Missed AbstractArgument

This commit is contained in:
Zmey 2020-09-01 15:23:56 +03:00
parent 509247b8ff
commit b5a47dac52
No known key found for this signature in database
GPG Key ID: 09E9B66531C5035A
1 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,7 @@
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
use Symfony\Component\DependencyInjection\Argument\AbstractArgument;
use Symfony\Component\DependencyInjection\Argument\ArgumentInterface;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
@ -85,6 +86,7 @@ abstract class AbstractConfigurator
case $value instanceof Definition:
case $value instanceof Expression:
case $value instanceof Parameter:
case $value instanceof AbstractArgument:
case $value instanceof Reference:
if ($allowServices) {
return $value;