Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1.5786 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | 4 | public function getFilters() |
|
26 | { |
||
27 | return [ |
||
28 | 4 | new \Twig_SimpleFilter('debug', 'debug'), |
|
29 | new \Twig_SimpleFilter('pr', 'pr'), |
||
30 | new \Twig_SimpleFilter('low', 'low'), |
||
31 | new \Twig_SimpleFilter('up', 'up'), |
||
32 | new \Twig_SimpleFilter('env', 'env'), |
||
33 | new \Twig_SimpleFilter('count', 'count'), |
||
34 | new \Twig_SimpleFilter('h', 'h'), |
||
35 | new \Twig_SimpleFilter('null', function () { |
||
36 | return ''; |
||
37 | }), |
||
38 | ]; |
||
39 | } |
||
40 | |||
51 |