| 1 | <?php declare(strict_types=1); |
||
| 14 | class Guzzle6Transport implements TransportInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var ClientInterface |
||
| 18 | */ |
||
| 19 | private $client; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Guzzle6Transport constructor. |
||
| 23 | * |
||
| 24 | * @param ClientInterface|null $client |
||
| 25 | */ |
||
| 26 | 1 | public function __construct(ClientInterface $client = null) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | public function executeRequest(string $uri, string $body): string |
||
| 43 | } |
||
| 44 |