1 | <?php declare(strict_types=1); |
||
20 | final class Basic extends AbstractExtension |
||
21 | { |
||
22 | /** |
||
23 | * Get declared filters. |
||
24 | * |
||
25 | * @return \Twig\TwigFilter[] |
||
26 | */ |
||
27 | 4 | public function getFilters(): array |
|
40 | |||
41 | /** |
||
42 | * Get declared functions. |
||
43 | * |
||
44 | * @return \Twig\TwigFunction[] |
||
45 | */ |
||
46 | 1 | public function getFunctions(): array |
|
52 | |||
53 | /** |
||
54 | * Get extension name. |
||
55 | * |
||
56 | * @return string |
||
57 | */ |
||
58 | public function getName(): string |
||
62 | } |
||
63 |