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