Skip to content

Commit

Permalink
fix: fix argument resolver error (#5342)
Browse files Browse the repository at this point in the history
  • Loading branch information
KDederichs committed Jan 16, 2023
1 parent c39c3e8 commit ec67b3f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -61,7 +61,7 @@ public function resolve(Request $request, ArgumentMetadata $argument): iterable
{
if (interface_exists(ValueResolverInterface::class)) {
if (!$this->supports($request, $argument)) {
yield [];
return [];
}
}

Expand Down

0 comments on commit ec67b3f

Please sign in to comment.