summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2019-08-25 15:12:13 -0700
committerWolfy-J <[email protected]>2019-08-25 15:12:13 -0700
commit49e002c11e5cc915d80efa58611f4c4a72de7bb2 (patch)
treebe3585da2e832379c604a877f4f12b8f27209d97 /src
parentd4a46c577b312ab16fc6e6d88b339a0b6db39188 (diff)
- bugfix, invalid metrics parameter name
Diffstat (limited to 'src')
-rw-r--r--src/Metrics.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Metrics.php b/src/Metrics.php
index 8af06ec5..c17b96eb 100644
--- a/src/Metrics.php
+++ b/src/Metrics.php
@@ -32,7 +32,7 @@ final class Metrics implements MetricsInterface
/**
* Add collector value. Fallback to appropriate method of related collector.
*
- * @param string $collector
+ * @param string $name
* @param float $value
* @param array $labels
*
@@ -50,7 +50,7 @@ final class Metrics implements MetricsInterface
/**
* Subtract the collector value, only for gauge collector.
*
- * @param string $collector
+ * @param string $name
* @param float $value
* @param array $labels
*
@@ -68,7 +68,7 @@ final class Metrics implements MetricsInterface
/**
* Observe collector value, only for histogram and summary collectors.
*
- * @param string $collector
+ * @param string $name
* @param float $value
* @param array $labels
*
@@ -86,7 +86,7 @@ final class Metrics implements MetricsInterface
/**
* Set collector value, only for gauge collector.
*
- * @param string $collector
+ * @param string $name
* @param float $value
* @param array $labels
*