| Conditions | 3 |
| Paths | 3 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 3.1406 |
| Changes | 0 | ||
| 1 | <?php |
||
| 53 | 1 | public function getParameter($parameter) |
|
| 54 | { |
||
| 55 | 1 | if (in_array($parameter, $this->parametersList)) { |
|
| 56 | 1 | return isset($this->parametersValues[$parameter]) ? $this->parametersValues[$parameter] : null; |
|
| 57 | } else { |
||
| 58 | throw new InvalidArgumentException("Unknown configuration property : " . get_called_class() . "->" . $parameter); |
||
| 59 | } |
||
| 66 |