Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
22 | 1 | private function executeNestedFilter(Element $element, array $options) |
|
23 | { |
||
24 | 1 | list($filter, $nestedOptions) = $this->splitFilterAndOptions($options['real_filter']); |
|
25 | 1 | $nestedOptions['context'] = $options['context']; |
|
26 | |||
27 | 1 | return $this->filter($element, $filter, $options, $nestedOptions); |
|
28 | } |
||
29 | |||
46 |