Completed
Pull Request — master (#11)
by Andrea Marco
06:26
created
src/Providers/ServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     public function boot()
17 17
     {
18 18
         $this->publishes([
19
-            __DIR__.'/../../config/smokescreen.php' => config_path('smokescreen.php'),
19
+            __DIR__ . '/../../config/smokescreen.php' => config_path('smokescreen.php'),
20 20
         ], 'config');
21 21
 
22 22
         $this->commands(MakeTransformerCommand::class);
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function register()
31 31
     {
32
-        $this->app->singleton(Smokescreen::class, function () {
33
-            return new Smokescreen(new \Rexlabs\Smokescreen\Smokescreen(), config('smokescreen', []));
32
+        $this->app->singleton(Smokescreen::class, function() {
33
+            return new Smokescreen(new \Rexlabs\Smokescreen\Smokescreen(), config('smokescreen', [ ]));
34 34
         });
35 35
         $this->app->alias(Smokescreen::class, 'smokescreen');
36 36
 
Please login to merge, or discard this patch.