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