mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-06 06:09:20 +02:00
15 lines
353 B
PHP
15 lines
353 B
PHP
<?php
|
|
|
|
use Twig\TwigFunction;
|
|
|
|
class_exists('Twig\TwigFunction');
|
|
|
|
@trigger_error('Using the "Twig_Function" class is deprecated since Twig version 2.7, use "Twig\TwigFunction" instead.', \E_USER_DEPRECATED);
|
|
|
|
if (false) {
|
|
/** @deprecated since Twig 2.7, use "Twig\TwigFunction" instead */
|
|
class Twig_Function extends TwigFunction
|
|
{
|
|
}
|
|
}
|