Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
16 | 9 | public function __get($variable) |
|
17 | { |
||
18 | 9 | if (in_array($variable, $this->parametersList)) { |
|
19 | 8 | if (isset($this->parametersValues[$variable])) { |
|
20 | 8 | return $this->parametersValues[$variable]; |
|
21 | } |
||
22 | |||
23 | 2 | return null; |
|
24 | } |
||
25 | |||
26 | 1 | throw new InvalidArgumentException("Unknown configuration property " . get_called_class() . '->' .$variable); |
|
27 | } |
||
58 |