@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | } |
46 | 46 | |
47 | 47 | return $this->getParameters([ |
48 | - 'id' => md5($route->getUri().':'.implode($route->getMethods())), |
|
48 | + 'id' => md5($route->getUri() . ':' . implode($route->getMethods())), |
|
49 | 49 | 'resource' => $routeGroup, |
50 | 50 | 'title' => $routeDescription['short'], |
51 | 51 | 'description' => $routeDescription['long'], |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | |
89 | 89 | $kernel->terminate($request, $response); |
90 | 90 | |
91 | - if (file_exists($file = App::bootstrapPath().'/app.php')) { |
|
91 | + if (file_exists($file = App::bootstrapPath() . '/app.php')) { |
|
92 | 92 | $app = require $file; |
93 | 93 | $app->make('Illuminate\Contracts\Console\Kernel')->bootstrap(); |
94 | 94 | } |