| @@ -14,7 +14,7 @@ discard block | ||
| 14 | 14 | public function boot() | 
| 15 | 15 |      { | 
| 16 | 16 | $this->publishes([ | 
| 17 | -            __DIR__ . '/config/imgix.php' => config_path('imgix.php'), | |
| 17 | +            __DIR__.'/config/imgix.php' => config_path('imgix.php'), | |
| 18 | 18 | ], 'imgix'); | 
| 19 | 19 | } | 
| 20 | 20 | |
| @@ -23,7 +23,7 @@ discard block | ||
| 23 | 23 | */ | 
| 24 | 24 | public function register() | 
| 25 | 25 |      { | 
| 26 | -        $this->app->singleton(UrlBuilder::class, function () { | |
| 26 | +        $this->app->singleton(UrlBuilder::class, function() { | |
| 27 | 27 | return new UrlBuilder( | 
| 28 | 28 |                  config('imgix.domains', []), | 
| 29 | 29 |                  config('imgix.useHttps', false), | 
| @@ -33,7 +33,7 @@ discard block | ||
| 33 | 33 | ); | 
| 34 | 34 | }); | 
| 35 | 35 | |
| 36 | -        $this->app->singleton(Imgix::class, function ($app) { | |
| 36 | +        $this->app->singleton(Imgix::class, function($app) { | |
| 37 | 37 | return new Imgix($app[UrlBuilder::class]); | 
| 38 | 38 | }); | 
| 39 | 39 | |