Completed
Push — master ( 4108a9...691608 )
by Mike
09:20 queued 36s
created
src/Providers/Service.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.