1 | <?php |
||
12 | class NativeRequestManager implements RequestManagerInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var \Marek\Toggable\Http\Client\HttpClientInterface |
||
16 | */ |
||
17 | private $client; |
||
18 | |||
19 | /** |
||
20 | * NativeRequestManager constructor. |
||
21 | * |
||
22 | * @param \Marek\Toggable\Http\Client\HttpClientInterface $client |
||
23 | */ |
||
24 | 17 | public function __construct(\Marek\Toggable\Http\Client\HttpClientInterface $client) |
|
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | 2 | public function request(\Marek\Toggable\API\Http\Request\RequestInterface $request) |
|
47 | } |
||
48 |