diff options
Diffstat (limited to 'public/system/library/template/Twig/Extension/InitRuntimeInterface.php')
-rw-r--r-- | public/system/library/template/Twig/Extension/InitRuntimeInterface.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/public/system/library/template/Twig/Extension/InitRuntimeInterface.php b/public/system/library/template/Twig/Extension/InitRuntimeInterface.php new file mode 100644 index 0000000..7a07582 --- /dev/null +++ b/public/system/library/template/Twig/Extension/InitRuntimeInterface.php @@ -0,0 +1,22 @@ +<?php + +/* + * This file is part of Twig. + * + * (c) Fabien Potencier + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +/** + * Enables usage of the deprecated Twig_Extension::initRuntime() method. + * + * Explicitly implement this interface if you really need to implement the + * deprecated initRuntime() method in your extensions. + * + * @author Fabien Potencier <fabien@symfony.com> + */ +interface Twig_Extension_InitRuntimeInterface +{ +} |