| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 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 |