Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
18 | class ReportTwigExtension extends AbstractExtension |
||
19 | { |
||
20 | 7 | public function getFilters() |
|
21 | { |
||
22 | return [ |
||
23 | 7 | new TwigFilter('catalog', ['Greenter\Report\Filter\DocumentFilter', 'getValueCatalog']), |
|
24 | 7 | new TwigFilter('image_b64', ['Greenter\Report\Filter\ImageFilter', 'toBase64']), |
|
25 | 7 | new TwigFilter('n_format', ['Greenter\Report\Filter\FormatFilter', 'number']), |
|
26 | ]; |
||
27 | } |
||
28 | |||
29 | 7 | public function getFunctions() |
|
34 | ]; |
||
35 | } |
||
37 |