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