1 | <?php |
||
10 | class GuzzleHttpClient implements HttpClient |
||
11 | { |
||
12 | /** |
||
13 | * @var ClientInterface |
||
14 | */ |
||
15 | private $guzzleClient; |
||
16 | |||
17 | /** |
||
18 | * @param ClientInterface|null $guzzleClient |
||
19 | */ |
||
20 | 3 | public function __construct(ClientInterface $guzzleClient = null) |
|
28 | |||
29 | /** |
||
30 | * @inheritdoc |
||
31 | */ |
||
32 | 1 | public function send($method, $uri, $body = null, array $query = [], array $headers = [], array $options = []) |
|
47 | } |
||
48 |