| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | 6 | public function getAttr(array $name, array &$context, $defaultValue = false) |
|
| 34 | { |
||
| 35 | 6 | $current = array_shift($name); |
|
| 36 | |||
| 37 | 6 | if (!array_key_exists($current, $context)) { |
|
| 38 | 1 | return $defaultValue; |
|
| 39 | } |
||
| 40 | |||
| 41 | 6 | return count($name) |
|
| 42 | 5 | ? $this->getAttr($name, $context[$current], $defaultValue) |
|
| 43 | 6 | : $context[$current]; |
|
| 44 | } |
||
| 45 | |||
| 80 |