| 1 | <?php |
||
| 13 | class GuzzleClient implements ClientInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var GuzzleHttpClient The Guzzle client. |
||
| 17 | */ |
||
| 18 | protected $guzzleClient; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param GuzzleHttpClient|null $guzzleClient The Guzzle client. |
||
| 22 | */ |
||
| 23 | 4 | public function __construct(GuzzleHttpClient $guzzleClient = null) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @inheritdoc |
||
| 30 | */ |
||
| 31 | 1 | public function send(Request $request, $timeout = null) |
|
| 57 | } |
||
| 58 |