Completed
Push — master ( b76cb7...b55765 )
by Evgenii
14s
created
src/ImgixServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
      */
16 16
     public function boot()
17 17
     {
18
-        $configFile = dirname(__DIR__) . '/config/imgix.php';
18
+        $configFile = dirname(__DIR__).'/config/imgix.php';
19 19
 
20 20
         $this->mergeConfigFrom($configFile, static::ALIAS);
21 21
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function register()
31 31
     {
32
-        $this->app->singleton(UrlBuilder::class, function () {
32
+        $this->app->singleton(UrlBuilder::class, function() {
33 33
             return new UrlBuilder(
34 34
                 config('imgix.domains'),
35 35
                 config('imgix.useHttps', false),
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
             );
40 40
         });
41 41
 
42
-        $this->app->singleton(Imgix::class, function ($app) {
42
+        $this->app->singleton(Imgix::class, function($app) {
43 43
             return new Imgix($app[UrlBuilder::class]);
44 44
         });
45 45
 
Please login to merge, or discard this patch.