1 | <?php declare(strict_types=1); |
||
12 | final class StreamingRequestHandler |
||
13 | { |
||
14 | /** |
||
15 | * @var Client |
||
16 | */ |
||
17 | private $client; |
||
18 | |||
19 | /** |
||
20 | * @param Client $client |
||
21 | */ |
||
22 | public function __construct(Client $client) |
||
26 | |||
27 | public function handle(RequestCommandInterface $command): PromiseInterface |
||
36 | } |
||
37 |