| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | 11 | public function getValue($path) |
|
| 17 | { |
||
| 18 | 11 | list($section, $group, $element) = explode('/', $path); |
|
| 19 | 11 | $xpath = sprintf('/*/%s/%s/%s', $section, $group, $element); |
|
| 20 | 11 | $element = $this->xpath($xpath); |
|
| 21 | 11 | if (empty($element)) { |
|
| 22 | 3 | return null; |
|
| 23 | } |
||
| 24 | 10 | $value = (string)$element[0]; |
|
| 25 | 10 | return $value; |
|
| 26 | } |
||
| 27 | |||
| 40 |