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