@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | { |
| 23 | 23 | $this->app->when(IntercomChannel::class) |
| 24 | 24 | ->needs(IntercomClient::class) |
| 25 | - ->give(function () { |
|
| 25 | + ->give(function() { |
|
| 26 | 26 | /** @var Config $config */ |
| 27 | 27 | return new IntercomClient( |
| 28 | 28 | Config::get('services.intercom.token'), |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | */ |
| 37 | 37 | public function register() |
| 38 | 38 | { |
| 39 | - Notification::extend('intercom', function (Application $app) { |
|
| 39 | + Notification::extend('intercom', function(Application $app) { |
|
| 40 | 40 | return $app->make(IntercomChannel::class); |
| 41 | 41 | }); |
| 42 | 42 | } |