@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | public function storagePath() |
32 | 32 | { |
33 | - $path = env('STORAGE_PATH', $this->basePath . DIRECTORY_SEPARATOR . 'storage'); |
|
33 | + $path = env('STORAGE_PATH', $this->basePath.DIRECTORY_SEPARATOR.'storage'); |
|
34 | 34 | |
35 | 35 | return $this->storagePath ?: $path; |
36 | 36 | } |
@@ -56,9 +56,9 @@ discard block |
||
56 | 56 | \Route::group([ |
57 | 57 | 'middleware' => 'web', |
58 | 58 | 'namespace' => $this->namespace, |
59 | - ], function ($router) { |
|
59 | + ], function($router) { |
|
60 | 60 | |
61 | - require __DIR__ . '/../routes/web.php'; |
|
61 | + require __DIR__.'/../routes/web.php'; |
|
62 | 62 | }); |
63 | 63 | } |
64 | 64 | |
@@ -75,8 +75,8 @@ discard block |
||
75 | 75 | 'middleware' => 'api', |
76 | 76 | 'namespace' => $this->namespace, |
77 | 77 | 'prefix' => 'api', |
78 | - ], function ($router) { |
|
79 | - require __DIR__ . '/../routes/api.php'; |
|
78 | + ], function($router) { |
|
79 | + require __DIR__.'/../routes/api.php'; |
|
80 | 80 | }); |
81 | 81 | } |
82 | 82 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | protected function registerRouter() |
15 | 15 | { |
16 | - $this->app['router'] = $this->app->share(function ($app) { |
|
16 | + $this->app['router'] = $this->app->share(function($app) { |
|
17 | 17 | return new Router($app['events'], $app); |
18 | 18 | }); |
19 | 19 | } |