1 | <?php declare(strict_types=1); |
||
9 | final class StreamingRequestHandler |
||
10 | { |
||
11 | /** |
||
12 | * @var Client |
||
13 | */ |
||
14 | private $client; |
||
15 | |||
16 | /** |
||
17 | * @param Client $client |
||
18 | */ |
||
19 | public function __construct(Client $client) |
||
23 | |||
24 | public function handle(RequestCommandInterface $command): PromiseInterface |
||
28 | } |
||
29 |