@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | { |
14 | 14 | app('router')->group($this->middlewareGroupExists('web') |
15 | 15 | ? ['middleware' => 'web'] |
16 | - : [], function () { |
|
16 | + : [], function() { |
|
17 | 17 | require __DIR__ . '/../../routes/web.php'; |
18 | 18 | }); |
19 | 19 | |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | { |
42 | 42 | $routes = collect(app('router')->getRoutes()->getRoutes()); |
43 | 43 | |
44 | - return $routes->reduce(function ($carry, Route $route) use ($group) { |
|
44 | + return $routes->reduce(function($carry, Route $route) use ($group) { |
|
45 | 45 | $carry = ($carry ?? false) ?: false; |
46 | 46 | $actions = (array) $route->getAction(); |
47 | 47 |