Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
32 | 3 | public function getHandlerForCommand($commandName) |
|
33 | { |
||
34 | 3 | if (!is_callable($this->handlers[$commandName])) { |
|
35 | 1 | throw MissingHandlerException::forCommand($commandName); |
|
36 | } |
||
37 | |||
38 | /** @var callable $handler */ |
||
39 | 2 | $handler = $this->handlers[$commandName]; |
|
40 | |||
41 | 2 | return $handler(); |
|
42 | } |
||
43 | } |
||
44 |