1 | <?php |
||
8 | class HttpClientTransport implements TransportInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var HttpClient |
||
12 | */ |
||
13 | private $client; |
||
14 | |||
15 | /** |
||
16 | * @var MessageFactory |
||
17 | */ |
||
18 | private $messageFactory; |
||
19 | |||
20 | 1 | public function __construct(HttpClient $client, MessageFactory $messageFactory) |
|
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public function executeRequest($uri, $body) |
||
36 | } |
||
37 |