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