@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | |
11 | 11 | public function boot() |
12 | 12 | { |
13 | - $this->publishes([__DIR__ . '/config/gmail.php' => App::make('path.config') . '/gmail.php',]); |
|
13 | + $this->publishes([__DIR__ . '/config/gmail.php' => App::make('path.config') . '/gmail.php', ]); |
|
14 | 14 | } |
15 | 15 | |
16 | 16 | public function register() |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | $this->mergeConfigFrom(__DIR__ . '/config/gmail.php', 'gmail'); |
20 | 20 | |
21 | 21 | // Main Service |
22 | - $this->app->bind('laravelgmail', function ($app) { |
|
22 | + $this->app->bind('laravelgmail', function($app) { |
|
23 | 23 | return new LaravelGmailClass($app['config']); |
24 | 24 | }); |
25 | 25 |