Skip to content

Commit

Permalink
style: fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
xel1045 committed Jan 13, 2025
1 parent 7a7f42f commit 85a21ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Channels/NewrelicChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand All @@ -42,7 +42,7 @@ public function signal(string $account, string $key, string $eventType, array $e
],
'json' => [
'eventType' => $eventType,
...$eventData
...$eventData,
],
]);
}
Expand Down

0 comments on commit 85a21ed

Please sign in to comment.