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