@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | */ |
| 31 | 31 | public function register() |
| 32 | 32 | { |
| 33 | - $this->app->singleton('desktop.notifier', function ($app) { |
|
| 33 | + $this->app->singleton('desktop.notifier', function($app) { |
|
| 34 | 34 | $config = $app['config']['app.notifiers']; |
| 35 | 35 | |
| 36 | 36 | $notifier = NotifierFactory::create(is_array($config) ? $config : []); |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | |
| 41 | 41 | $this->app->alias('desktop.notifier', NotifierContract::class); |
| 42 | 42 | |
| 43 | - $this->app->bind('desktop.notification', function () { |
|
| 43 | + $this->app->bind('desktop.notification', function() { |
|
| 44 | 44 | return new Notification(); |
| 45 | 45 | }); |
| 46 | 46 | |