Skip to content

Commit

Permalink
inited curl
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed Jan 21, 2017
1 parent 35293a6 commit 4e5ed01
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/curl/Request.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

namespace hiqdev\hiart\curl;

use hiqdev\hiart\AbstractRequest;

/**
* cURL request implementation.
*
* @author Andrii Vasyliev <[email protected]>
*/
class Request extends AbstractRequest
{
protected $workerClass = RequestWorker::class;

protected function createWorker()
{
}
}
18 changes: 18 additions & 0 deletions src/curl/Response.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

namespace hiqdev\hiart\curl;

use hiqdev\hiart\AbstractResponse;

/**
* Guzzle response implementation.
*
* @author Andrii Vasyliev <[email protected]>
*/
class Response extends AbstractResponse
{
/**
* @var ResponseWorker
*/
protected $worker;
}

0 comments on commit 4e5ed01

Please sign in to comment.