Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\DependencyInjection; Chris@0: Chris@14: @trigger_error('The '.__NAMESPACE__.'\DefinitionDecorator class is deprecated since Symfony 3.3 and will be removed in 4.0. Use the Symfony\Component\DependencyInjection\ChildDefinition class instead.', E_USER_DEPRECATED); Chris@0: Chris@14: class_exists(ChildDefinition::class); Chris@0: Chris@14: if (false) { Chris@0: /** Chris@14: * This definition decorates another definition. Chris@14: * Chris@14: * @author Johannes M. Schmitt Chris@14: * Chris@14: * @deprecated The DefinitionDecorator class is deprecated since version 3.3 and will be removed in 4.0. Use the Symfony\Component\DependencyInjection\ChildDefinition class instead. Chris@0: */ Chris@14: class DefinitionDecorator extends Definition Chris@0: { Chris@0: } Chris@0: }