1 | <?php |
||
19 | class Client implements HttpClient, HttpAsyncClient |
||
20 | { |
||
21 | use HttpClientEmulator; |
||
22 | |||
23 | /** |
||
24 | * @var ClientInterface |
||
25 | */ |
||
26 | private $client; |
||
27 | |||
28 | /** |
||
29 | * @param ClientInterface|null $client |
||
30 | */ |
||
31 | 324 | public function __construct(ClientInterface $client = null) |
|
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | 324 | public function sendAsyncRequest(RequestInterface $request) |
|
50 | } |
||
51 |