@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | AboutCommand::add('Bookwhen', fn () => ['Version' => '1.0.0']); |
| 20 | 20 | |
| 21 | 21 | // Bind |
| 22 | - $this->app->bind('bookwhen', function ($app) { |
|
| 22 | + $this->app->bind('bookwhen', function($app) { |
|
| 23 | 23 | return new Bookwhen(config('bookwhen.api_key')); |
| 24 | 24 | }); |
| 25 | 25 | |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | $this->registerRoutes(); |
| 35 | 35 | |
| 36 | 36 | // Views |
| 37 | - $this->loadViewsFrom(__DIR__.'/../resources/views', 'bookwhen'); |
|
| 37 | + $this->loadViewsFrom(__DIR__ . '/../resources/views', 'bookwhen'); |
|
| 38 | 38 | |
| 39 | 39 | } |
| 40 | 40 | |
@@ -56,8 +56,8 @@ discard block |
||
| 56 | 56 | */ |
| 57 | 57 | protected function registerRoutes() |
| 58 | 58 | { |
| 59 | - Route::group($this->routeConfiguration(), function () { |
|
| 60 | - $this->loadRoutesFrom(__DIR__.'/../routes/web.php'); |
|
| 59 | + Route::group($this->routeConfiguration(), function() { |
|
| 60 | + $this->loadRoutesFrom(__DIR__ . '/../routes/web.php'); |
|
| 61 | 61 | }); |
| 62 | 62 | } |
| 63 | 63 | |