| 1 | <?php |
||
| 10 | abstract class AbstractTwigExtension |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Whether or not this filter is allowed when a site is built in safe mode. |
||
| 14 | * |
||
| 15 | * @return bool |
||
| 16 | */ |
||
| 17 | public static function disableInSafeMode() |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Whether or not this filter is allowed when a site is built in debug mode. |
||
| 24 | * @return bool |
||
| 25 | */ |
||
| 26 | public static function onlyInDebug() |
||
| 30 | } |
||
| 31 |