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