@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | public function __construct(RouteService $routeService) |
13 | 13 | { |
14 | 14 | $this->routeService = $routeService; |
15 | - $this->routeNotFound = new Route('', function () { |
|
15 | + $this->routeNotFound = new Route('', function() { |
|
16 | 16 | return null; |
17 | 17 | }); |
18 | 18 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | yield $this->routeNotFound; |
36 | 36 | } |
37 | 37 | |
38 | - protected function matchRule(Route $route, string $pathUrl) : ?Route |
|
38 | + protected function matchRule(Route $route, string $pathUrl) : ? Route |
|
39 | 39 | { |
40 | 40 | $activeRoute = null; |
41 | 41 |