Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
24 | 2 | public function execute(Command $command): void |
|
25 | { |
||
26 | 2 | if (!isset($this->handlers[get_class($command)])) { |
|
27 | 1 | throw new CommandBusException(sprintf('This Commandbus cannot handle command "%s".', get_class($command))); |
|
28 | } |
||
29 | |||
30 | 1 | $this->handlers[get_class($command)]->handle($command); |
|
31 | 1 | } |
|
32 | } |
||
33 |