Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public function getLastMessage(): string
* Increment a metric
*
* @param string|array $metrics Metric(s) to increment
* @param int $delta Value to decrement the metric by
* @param int $delta Value to increment the metric by
* @param float $sampleRate Sample rate of metric
* @param array $tags A list of metric tags values
*
Expand Down Expand Up @@ -168,7 +168,7 @@ public function increment($metrics, int $delta = 1, float $sampleRate = 1, array
* Decrement a metric
*
* @param string|array $metrics Metric(s) to decrement
* @param int $delta Value to increment the metric by
* @param int $delta Value to decrement the metric by
* @param float $sampleRate Sample rate of metric
* @param array $tags A list of metric tags values
*
Expand Down
4 changes: 2 additions & 2 deletions src/StatsDClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interface StatsDClient
* Increment a metric
*
* @param string|array $metrics Metric(s) to increment
* @param int $delta Value to decrement the metric by
* @param int $delta Value to increment the metric by
* @param float $sampleRate Sample rate of metric
* @param array $tags A list of metric tags values
*
Expand All @@ -27,7 +27,7 @@ public function increment($metrics, int $delta = 1, float $sampleRate = 1, array
* Decrement a metric
*
* @param string|array $metrics Metric(s) to decrement
* @param int $delta Value to increment the metric by
* @param int $delta Value to decrement the metric by
* @param float $sampleRate Sample rate of metric
* @param array $tags A list of metric tags values
*
Expand Down