Passed
Branch master (26ddf6)
by Ersoy
03:47
created
Category
src/Events/CustomEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
         if (array_key_exists($reservedKey, $properties)) {
97 97
             $users = $properties[$reservedKey];
98 98
             unset($properties[$reservedKey]);
99
-            $properties = array_map(function ($user) use ($properties) {
99
+            $properties = array_map(function($user) use ($properties) {
100 100
                 if (is_array($user)) {
101 101
                     return $user + $properties;
102 102
                 }
Please login to merge, or discard this patch.
src/NewRelicCustomEventServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
     public function register()
61 61
     {
62
-        $this->app->singleton('new-relic-custom-event', function ($app) {
62
+        $this->app->singleton('new-relic-custom-event', function($app) {
63 63
             return new NewRelicPostService(
64 64
                 new NewRelicConfig(
65 65
                     $app['config']['new-relic-custom-event.account_id'],
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         });
71 71
 
72 72
 
73
-        $this->app->singleton('new-relic-dispatcher', function ($app) {
73
+        $this->app->singleton('new-relic-dispatcher', function($app) {
74 74
             return new NewRelicDispatcher($app['config'], $app['events']);
75 75
         });
76 76
     }
Please login to merge, or discard this patch.