Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
61 | 3 | private function lazyLoad($command_name) |
|
62 | { |
||
63 | 3 | if (isset($this->command_handler_ids[$command_name])) { |
|
64 | 3 | $handler = $this->container->get($this->command_handler_ids[$command_name]); |
|
65 | |||
66 | 3 | if ($handler instanceof CommandHandler) { |
|
67 | 1 | return $handler; |
|
68 | } |
||
69 | 2 | } |
|
70 | |||
71 | 2 | return null; |
|
72 | } |
||
73 | } |
||
74 |