Total Complexity | 2 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class MessengerCommandBus implements CommandBusProtocol |
||
21 | { |
||
22 | public MessageBusInterface $commandBus; |
||
23 | |||
24 | public function __construct(MessageBusInterface $commandBus) |
||
25 | { |
||
26 | $this->commandBus = $commandBus; |
||
27 | } |
||
28 | |||
29 | final public function dispatch(CommandProtocol $command): void |
||
32 | } |
||
33 | } |
||
34 |