1 | <?php |
||
8 | class Api implements ApiInterface |
||
9 | { |
||
10 | /** @var ClientInterface $client */ |
||
11 | protected $client; |
||
12 | |||
13 | /** |
||
14 | * ApiAbstract constructor. |
||
15 | * |
||
16 | * @param ClientInterface $client |
||
17 | */ |
||
18 | 2 | public function __construct(ClientInterface $client) |
|
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | 2 | public function send(ApiRequestInterface $apiRequest) |
|
36 | } |
||
37 |