Skip to content

Commit

Permalink
spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmastech committed Jul 8, 2024
1 parent d5d64d0 commit 669cc0d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Adapters/Datadog/DatadogStatsDClientAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ public function __construct(protected readonly DogStatsd $datadogClient, array $

public function timing(string $stat, float $durationMs, float $sampleRate = 1.0, array $tags = []): void
{
$this->datadogClient->timing($stat, $durationMs, $sampleRate, $this->normalizeTags($this->mergeTags($tags)));
$this->datadogClient->timing(
$stat,
$durationMs,
$sampleRate,
$this->normalizeTags($this->mergeTags($tags))
);
}

public function gauge(string $stat, float $value, float $sampleRate = 1.0, array $tags = []): void
Expand Down

0 comments on commit 669cc0d

Please sign in to comment.