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