Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2.0185 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | 6 | public function __construct(ContainerInterface $container, $commandToServiceIdMapping) |
|
28 | { |
||
29 | 6 | if (empty($commandToServiceIdMapping)) { |
|
30 | throw new \InvalidArgumentException('commandToServiceIdMapping cannot be empty'); |
||
31 | } |
||
32 | |||
33 | 6 | $this->container = $container; |
|
34 | 6 | $this->commandToServiceId = $commandToServiceIdMapping; |
|
35 | 6 | } |
|
36 | |||
52 |