@@ -96,7 +96,7 @@ |
||
| 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 | } |
@@ -59,7 +59,7 @@ discard block |
||
| 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 |
||
| 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 | } |