Skip to content

Commit 5d453ab

Browse files
committed
refactor: fix spaces according to PHP CS Fixer
1 parent dcb3855 commit 5d453ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/Router/RouteCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1540,7 +1540,7 @@ protected function create(string $verb, string $from, $to, ?array $options = nul
15401540
// routes should always be the "source of truth".
15411541
// this works only because discovered routes are added just prior
15421542
// to attempting to route the request.
1543-
$routeKeyExists = isset($this->routes[$verb][$routeKey]);
1543+
$routeKeyExists = isset($this->routes[$verb][$routeKey]);
15441544
$routeNameExists = isset($this->routesNames[$verb][$routeKey]);
15451545
if (($routeNameExists || $routeKeyExists) && ! $overwrite) {
15461546
return;

0 commit comments

Comments
 (0)