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