Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 1.0007 |
Changes | 1 | ||
Bugs | 0 | Features | 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('env', 'env'), |
|
33 | 4 | new \Twig_SimpleFilter('count', 'count'), |
|
34 | 4 | new \Twig_SimpleFilter('h', 'h'), |
|
35 | 4 | new \Twig_SimpleFilter('null', function () { |
|
36 | return ''; |
||
37 | 4 | }), |
|
38 | ]; |
||
39 | } |
||
40 | |||
51 |