Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1.0008 |
Changes | 0 |
1 | <?php |
||
29 | 4 | public function getFilters(): array |
|
30 | { |
||
31 | return [ |
||
32 | 4 | new TwigFilter('debug', 'debug'), |
|
33 | 4 | new TwigFilter('pr', 'pr'), |
|
34 | 4 | new TwigFilter('low', 'low'), |
|
35 | 4 | new TwigFilter('up', 'up'), |
|
36 | 4 | new TwigFilter('env', 'env'), |
|
37 | 4 | new TwigFilter('count', 'count'), |
|
38 | 4 | new TwigFilter('h', 'h'), |
|
39 | new TwigFilter('null', function () { |
||
40 | return ''; |
||
41 | 4 | }), |
|
42 | ]; |
||
43 | } |
||
44 | |||
55 |