Passed
Push — master ( 90611d...6de840 )
by Andrey
02:51
created
src/IntercomServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.