bug #20967 [DI] Fix DefinitionDecorator deprecation layer (nicolas-grekas)

This PR was merged into the 3.3-dev branch.

Discussion
----------

[DI] Fix DefinitionDecorator deprecation layer

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

This should make Travis green from 3.1 to master.
ping @xabbuh FYI

Restores compat with `instanceof DefinitionDecorator` checks.

Commits
-------

14c65e3 [DI] Fix DefinitionDecorator deprecation layer
This commit is contained in:
Nicolas Grekas 2016-12-17 11:10:26 +01:00
commit 200516aaaa
2 changed files with 3 additions and 3 deletions

View File

@ -14,6 +14,8 @@ namespace Symfony\Component\DependencyInjection;
use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
use Symfony\Component\DependencyInjection\Exception\OutOfBoundsException;
class_alias(ChildDefinition::class, DefinitionDecorator::class);
/**
* This definition extends another definition.
*

View File

@ -20,6 +20,4 @@ namespace Symfony\Component\DependencyInjection;
*
* @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.
*/
class DefinitionDecorator extends ChildDefinition
{
}
class_exists(ChildDefinition::class);