@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | /** |
| 75 | 75 | * Log the user. |
| 76 | 76 | * |
| 77 | - * @return \Illuminate\Http\RedirectReponse |
|
| 77 | + * @return \Illuminate\Http\RedirectResponse |
|
| 78 | 78 | */ |
| 79 | 79 | public function getLogout() |
| 80 | 80 | { |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | * panel.If they do no, they will be sent |
| 118 | 118 | * to the homepage of the website. |
| 119 | 119 | * |
| 120 | - * @return \Illuminate\Http\RedirectReponse |
|
| 120 | + * @return \Illuminate\Http\RedirectResponse |
|
| 121 | 121 | */ |
| 122 | 122 | protected function loginRedirect() |
| 123 | 123 | { |
@@ -15,20 +15,20 @@ discard block |
||
| 15 | 15 | { |
| 16 | 16 | // Assets |
| 17 | 17 | $this->publishes([ |
| 18 | - __DIR__.'/../public/flare' => public_path('vendor/flare'), |
|
| 19 | - __DIR__.'/../public/AdminLTE/bootstrap' => public_path('vendor/flare/bootstrap'), |
|
| 20 | - __DIR__.'/../public/AdminLTE/dist' => public_path('vendor/flare'), |
|
| 21 | - __DIR__.'/../public/AdminLTE/plugins' => public_path('vendor/flare/plugins'), |
|
| 18 | + __DIR__ . '/../public/flare' => public_path('vendor/flare'), |
|
| 19 | + __DIR__ . '/../public/AdminLTE/bootstrap' => public_path('vendor/flare/bootstrap'), |
|
| 20 | + __DIR__ . '/../public/AdminLTE/dist' => public_path('vendor/flare'), |
|
| 21 | + __DIR__ . '/../public/AdminLTE/plugins' => public_path('vendor/flare/plugins'), |
|
| 22 | 22 | ], 'public'); |
| 23 | 23 | |
| 24 | 24 | // Config |
| 25 | 25 | $this->publishes([ |
| 26 | - __DIR__.'/../config/flare.php' => config_path('flare.php'), |
|
| 26 | + __DIR__ . '/../config/flare.php' => config_path('flare.php'), |
|
| 27 | 27 | ]); |
| 28 | 28 | |
| 29 | 29 | // Database Migrations |
| 30 | 30 | $this->publishes([ |
| 31 | - __DIR__.'/Database/Migrations' => base_path('database/migrations'), |
|
| 31 | + __DIR__ . '/Database/Migrations' => base_path('database/migrations'), |
|
| 32 | 32 | ]); |
| 33 | 33 | |
| 34 | 34 | // Middleware |
@@ -41,13 +41,13 @@ discard block |
||
| 41 | 41 | |
| 42 | 42 | // Routes |
| 43 | 43 | if (!$this->app->routesAreCached()) { |
| 44 | - require __DIR__.'/Http/routes.php'; |
|
| 44 | + require __DIR__ . '/Http/routes.php'; |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | // Views |
| 48 | - $this->loadViewsFrom(__DIR__.'/../resources/views', 'flare'); |
|
| 48 | + $this->loadViewsFrom(__DIR__ . '/../resources/views', 'flare'); |
|
| 49 | 49 | $this->publishes([ |
| 50 | - __DIR__.'/../resources/views' => base_path('resources/views/vendor/flare'), |
|
| 50 | + __DIR__ . '/../resources/views' => base_path('resources/views/vendor/flare'), |
|
| 51 | 51 | ]); |
| 52 | 52 | |
| 53 | 53 | $this->registerBladeOperators(); |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | { |
| 61 | 61 | // Merge Config |
| 62 | 62 | $this->mergeConfigFrom( |
| 63 | - __DIR__.'/../config/flare.php', 'flare' |
|
| 63 | + __DIR__ . '/../config/flare.php', 'flare' |
|
| 64 | 64 | ); |
| 65 | 65 | |
| 66 | 66 | $this->registerServiceProviders(); |