| 1 | <?php declare(strict_types=1); |
||
| 17 | class PotentialDangerous extends \Twig_Extension |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Get declared filters. |
||
| 21 | * |
||
| 22 | * @return \Twig_SimpleFilter[] |
||
| 23 | */ |
||
| 24 | 1 | public function getFilters() |
|
| 30 | |||
| 31 | /** |
||
| 32 | * Get declared functions. |
||
| 33 | * |
||
| 34 | * @return \Twig_SimpleFunction[] |
||
| 35 | */ |
||
| 36 | 1 | public function getFunctions() |
|
| 42 | |||
| 43 | /** |
||
| 44 | * Get extension name. |
||
| 45 | * |
||
| 46 | * @return string |
||
| 47 | */ |
||
| 48 | 1 | public function getName() |
|
| 52 | } |
||
| 53 |