diff --git a/src/Channels/NewrelicChannel.php b/src/Channels/NewrelicChannel.php index 6f7caad..50389af 100644 --- a/src/Channels/NewrelicChannel.php +++ b/src/Channels/NewrelicChannel.php @@ -29,7 +29,7 @@ public function __construct(HttpClient $http) * @param string $key * @param string $eventType * @param array $eventData - * @return voids + * @return void */ public function signal(string $account, string $key, string $eventType, array $eventData = []): void { @@ -42,7 +42,7 @@ public function signal(string $account, string $key, string $eventType, array $e ], 'json' => [ 'eventType' => $eventType, - ...$eventData + ...$eventData, ], ]); }