Skip to content

Commit

Permalink
Fix recursion in Container Proxy (#1140)
Browse files Browse the repository at this point in the history
  • Loading branch information
spiralbot committed Sep 5, 2024
1 parent e06f05e commit 5969675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Internal/Proxy/Resolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static function resolve(
private static function getScope(ContainerInterface $c): string
{
return \implode('.', \array_reverse(\array_map(
static fn(?string $name): string => $name ?? 'null',
static fn (?string $name): string => $name ?? 'null',
Introspector::scopeNames($c),
)));
}
Expand Down

0 comments on commit 5969675

Please sign in to comment.