Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 1.0007 |
Changes | 0 |
1 | <?php |
||
25 | 4 | public function getFilters() |
|
26 | { |
||
27 | return [ |
||
28 | 4 | new \Twig_SimpleFilter('debug', 'debug'), |
|
29 | 4 | new \Twig_SimpleFilter('pr', 'pr'), |
|
30 | 4 | new \Twig_SimpleFilter('low', 'low'), |
|
31 | 4 | new \Twig_SimpleFilter('up', 'up'), |
|
32 | 4 | new \Twig_SimpleFilter('count', 'count'), |
|
33 | 4 | new \Twig_SimpleFilter('h', 'h'), |
|
34 | 4 | new \Twig_SimpleFilter('null', function () { |
|
35 | return ''; |
||
36 | 4 | }), |
|
37 | 4 | ]; |
|
38 | } |
||
39 | |||
50 |