@@ -27,13 +27,13 @@ |
||
27 | 27 | */ |
28 | 28 | public function register() |
29 | 29 | { |
30 | - $this->app->singleton(Notifier::class, function ($app) { |
|
30 | + $this->app->singleton(Notifier::class, function($app) { |
|
31 | 31 | $config = $app['config']['app.notifiers']; |
32 | 32 | |
33 | 33 | return NotifierFactory::create(is_array($config) ? $config : []); |
34 | 34 | }); |
35 | 35 | |
36 | - $this->app->bind(Notification::class, function () { |
|
36 | + $this->app->bind(Notification::class, function() { |
|
37 | 37 | return new ConcreteNotification(); |
38 | 38 | }); |
39 | 39 | } |