@@ -15,10 +15,10 @@ discard block |
||
15 | 15 | */ |
16 | 16 | public function boot() |
17 | 17 | { |
18 | - $this->mergeConfigFrom(__DIR__.'/../config/mail-template.php', 'mail-template'); |
|
18 | + $this->mergeConfigFrom(__DIR__ . '/../config/mail-template.php', 'mail-template'); |
|
19 | 19 | |
20 | 20 | $this->publishes([ |
21 | - __DIR__.'/../config/mail-template.php' => config_path('mail-template.php'), |
|
21 | + __DIR__ . '/../config/mail-template.php' => config_path('mail-template.php'), |
|
22 | 22 | ]); |
23 | 23 | } |
24 | 24 | |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function register() |
29 | 29 | { |
30 | - $this->app->singleton(MailTemplate::class, function () { |
|
30 | + $this->app->singleton(MailTemplate::class, function() { |
|
31 | 31 | $driver = config('mail-template.driver', null); |
32 | 32 | if (is_null($driver) || $driver === 'log') { |
33 | 33 | return new NullDriver($driver === 'log'); |