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