@@ -14,7 +14,7 @@ discard block |
||
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 |
||
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 | } |