1 | <?php declare(strict_types=1); |
||
11 | final class SubscribeHandler |
||
12 | { |
||
13 | /** |
||
14 | * @var RequestService |
||
15 | */ |
||
16 | private $requestService; |
||
17 | |||
18 | /** |
||
19 | * @param RequestService $requestService |
||
20 | */ |
||
21 | public function __construct(RequestService $requestService) |
||
25 | |||
26 | /** |
||
27 | * @param SubscribeCommand $command |
||
28 | * @return PromiseInterface |
||
29 | */ |
||
30 | public function handle(SubscribeCommand $command): PromiseInterface |
||
44 | } |
||
45 |