From 669cc0daffa886c31438625662857e600a83cf31 Mon Sep 17 00:00:00 2001 From: Luke Kuzmish Date: Mon, 8 Jul 2024 17:52:47 -0400 Subject: [PATCH] spacing --- src/Adapters/Datadog/DatadogStatsDClientAdapter.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Adapters/Datadog/DatadogStatsDClientAdapter.php b/src/Adapters/Datadog/DatadogStatsDClientAdapter.php index 383de0e..03cd4bb 100644 --- a/src/Adapters/Datadog/DatadogStatsDClientAdapter.php +++ b/src/Adapters/Datadog/DatadogStatsDClientAdapter.php @@ -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