Skip to content

Commit ab0430d

Browse files
Merge branch '5.0'
* 5.0: [DI] fix loading defaults when using the PHP-DSL RepeatedType should always have inner types mapped
2 parents e61bc2c + 51c3cf6 commit ab0430d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/RegisterControllerArgumentLocatorsPass.php

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

5656
$publicAliases = [];
5757
foreach ($container->getAliases() as $id => $alias) {
58-
if ($alias->isPublic()) {
58+
if ($alias->isPublic() && !$alias->isPrivate()) {
5959
$publicAliases[(string) $alias][] = $id;
6060
}
6161
}

0 commit comments

Comments
 (0)