| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 27 | 4 | public function getFilters() |
|
| 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 | 4 | new TwigFilter('null', function () { |
|
| 38 | return ''; |
||
| 39 | 4 | }), |
|
| 40 | ]; |
||
| 41 | } |
||
| 42 | |||
| 53 |