We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 976cec8 commit 557ba27Copy full SHA for 557ba27
1 file changed
system/Router/Router.php
@@ -196,7 +196,9 @@ public function handle(?string $uri = null)
196
// Controllers/directories, but the application may not
197
// want this, like in the case of API's.
198
if (! $this->collection->shouldAutoRoute()) {
199
- throw new PageNotFoundException("Can't find a route for '{$this->collection->getHTTPVerb()}: {$uri}'.");
+ throw new PageNotFoundException(
200
+ "Can't find a route for '{$this->collection->getHTTPVerb()}: {$uri}'."
201
+ );
202
}
203
204
// Checks auto routes
0 commit comments