Conditions | 3 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 3.072 |
Changes | 0 |
1 | <?php |
||
22 | 28 | public function filter(Element $element, string $filter, array $options) |
|
23 | { |
||
24 | 28 | $result = $this->filterManager->filter($element, $filter, $options); |
|
25 | |||
26 | 28 | if (isset($options['validate']) && is_callable($options['validate'])) { |
|
27 | $options['validate']($result); |
||
28 | } |
||
29 | |||
30 | 28 | return $result; |
|
31 | } |
||
32 | |||
41 |