Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
40 | 7 | public function __construct(Array $values) |
|
41 | { |
||
42 | 7 | if (!isset($values['kernel'])) { |
|
43 | 4 | throw new InvalidArgumentException('Kernel argument must be an integer'); |
|
44 | } |
||
45 | |||
46 | 3 | if (!is_int($values['kernel'])) { |
|
47 | 1 | throw new InvalidArgumentException('Required value "kernel" is not present'); |
|
48 | } |
||
49 | |||
50 | 2 | $this->kernel = $values['kernel']; |
|
51 | 2 | } |
|
67 |