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