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