1<?php
2
3use Twig\Loader\SourceContextLoaderInterface;
4
5class_exists('Twig\Loader\SourceContextLoaderInterface');
6
7@trigger_error('Using the "Twig_SourceContextLoaderInterface" class is deprecated since Twig version 2.7, use "Twig\Loader\SourceContextLoaderInterface" instead.', \E_USER_DEPRECATED);
8
9if (false) {
10    /** @deprecated since Twig 2.7, use "Twig\Loader\SourceContextLoaderInterface" instead */
11    class Twig_SourceContextLoaderInterface extends SourceContextLoaderInterface
12    {
13    }
14}
15