Skip to content

Commit fadf939

Browse files
[DI] Make tagged abstract services throw earlier
1 parent 7de4a08 commit fadf939

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/RoutingResolverPass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function process(ContainerBuilder $container)
3939

4040
$definition = $container->getDefinition($this->resolverServiceId);
4141

42-
foreach ($container->findTaggedServiceIds($this->loaderTag) as $id => $attributes) {
42+
foreach ($container->findTaggedServiceIds($this->loaderTag, true) as $id => $attributes) {
4343
$definition->addMethodCall('addLoader', array(new Reference($id)));
4444
}
4545
}

0 commit comments

Comments
 (0)