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