1 | <?php |
||
13 | final class BatchClient implements BatchClientInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var ClientInterface |
||
17 | */ |
||
18 | private $client; |
||
19 | |||
20 | 2 | public function __construct(ClientInterface $client) |
|
24 | |||
25 | 2 | public function sendRequest(RequestInterface $request): ResponseInterface |
|
29 | |||
30 | 2 | public function sendRequests(array $requests): BatchResult |
|
49 | } |
||
50 |