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