bug #17606 [DependencyInjection] pass triggerDeprecationError arg to parent class (xabbuh)

This PR was merged into the 2.7 branch.

Discussion
----------

[DependencyInjection] pass triggerDeprecationError arg to parent class

| Q             | A
| ------------- | ---
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | https://github.com/symfony/symfony/pull/17565#discussion_r51100525
| License       | MIT
| Doc PR        |

Commits
-------

350625d pass triggerDeprecationError arg to parent class
This commit is contained in:
Fabien Potencier 2016-01-30 09:55:49 +01:00
commit 12bee17ffc
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ class DefinitionDecorator extends Definition
{
$this->changes['factory_service'] = true;
return parent::setFactoryService($service);
return parent::setFactoryService($service, $triggerDeprecationError);
}
/**