Passed
Push — master ( a4c6fc...36a56c )
by Luis Andrés
07:58
created
src/LaravelImgurServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     {
15 15
         if ($this->app->runningInConsole()) {
16 16
             $this->publishes([
17
-                __DIR__.'/../config/config.php' => config_path('imgur.php'),
17
+                __DIR__ . '/../config/config.php' => config_path('imgur.php'),
18 18
             ], 'config');
19 19
         }
20 20
     }
@@ -25,10 +25,10 @@  discard block
 block discarded – undo
25 25
     public function register()
26 26
     {
27 27
         // Automatically apply the package configuration
28
-        $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'imgur');
28
+        $this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'imgur');
29 29
 
30 30
         // Register the main class to use with the facade
31
-        $this->app->singleton('LaravelImgur', function () {
31
+        $this->app->singleton('LaravelImgur', function() {
32 32
             return new LaravelImgur;
33 33
         });
34 34
     }
Please login to merge, or discard this patch.