@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | { |
18 | 18 | $this->app->when(IntercomChannel::class) |
19 | 19 | ->needs(IntercomClient::class) |
20 | - ->give(static function () { |
|
20 | + ->give(static function() { |
|
21 | 21 | /* @var Config $config */ |
22 | 22 | return new IntercomClient( |
23 | 23 | Config::get('services.intercom.token'), |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | */ |
32 | 32 | public function register(): void |
33 | 33 | { |
34 | - Notification::extend('intercom', static function (Container $app) { |
|
34 | + Notification::extend('intercom', static function(Container $app) { |
|
35 | 35 | return $app->make(IntercomChannel::class); |
36 | 36 | }); |
37 | 37 | } |