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