1 | <?php |
||
14 | abstract class CommandSubscriberByMap implements CommandSubscriber |
||
15 | { |
||
16 | /** |
||
17 | * @param Command $command |
||
18 | * @return CommandHandlerDescriptor |
||
19 | * @throws CommandHandlerNotFound |
||
20 | */ |
||
21 | 2 | public function getHandlerForCommand(Command $command) |
|
40 | |||
41 | abstract protected function getCommandHandlersDefinitions(): array; |
||
42 | } |