Passed
Pull Request — develop (#6)
by
unknown
12:07
created
Category
src/ServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.