8000 fix exception wording · symfony/symfony@9371536 · GitHub
[go: up one dir, main page]

Skip to content
10000

Commit 9371536

Browse files
committed
fix exception wording
1 parent 457d56f commit 9371536

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpKernel/Controller/ArgumentResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function getArguments(Request $request, callable $controller, \Reflection
7878
$representative = get_debug_type($representative);
7979
}
8080

81-
throw < 50C9 span class="pl-k">new \RuntimeException(sprintf('Controller "%s" requires that you provide a value for the "$%s" argument. Either the argument is nullable and no null value has been provided, no default value has been provided or because there is a non optional argument after this one.', $representative, $metadata->getName()));
81+
throw new \RuntimeException(sprintf('Controller "%s" requires that you provide a value for the "$%s" argument. Either the argument is nullable and no null value has been provided, no default value has been provided or there is a non-optional argument after this one.', $representative, $metadata->getName()));
8282
}
8383

8484
return $arguments;

0 commit comments

Comments
 (0)
0