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