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