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