Skip to content

Commit d8c2c3a

Browse files
committed
Missed AbstractArgument
1 parent 52e8a8a commit d8c2c3a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Loader/Configurator/AbstractConfigurator.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
1313

14+
use Symfony\Component\DependencyInjection\Argument\AbstractArgument;
1415
use Symfony\Component\DependencyInjection\Argument\ArgumentInterface;
1516
use Symfony\Component\DependencyInjection\Definition;
1617
use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
@@ -85,6 +86,7 @@ public static function processValue($value, $allowServices = false)
8586
case $value instanceof Definition:
8687
case $value instanceof Expression:
8788
case $value instanceof Parameter:
89+
case $value instanceof AbstractArgument:
8890
case $value instanceof Reference:
8991
if ($allowServices) {
9092
return $value;

0 commit comments

Comments
 (0)