Skip to content

Commit

Permalink
bump packages
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmastech committed Jul 9, 2024
1 parent 0ef91c8 commit a4ef534
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"require": {
"php": "^8.2",
"cosmastech/statsd-client-adapter": "^0.1.1",
"cosmastech/statsd-client-adapter": "^0.1.3",
"illuminate/support": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0"
},
Expand All @@ -34,7 +34,8 @@
"league/statsd": "^2.0.0",
"orchestra/testbench": "^9.1",
"laravel/facade-documenter": "dev-main",
"phpstan/phpstan": "^1.11"
"phpstan/phpstan": "^1.11",
"datadog/php-datadogstatsd": "^1.6.1"
},
"extra": {
"laravel": {
Expand Down
4 changes: 2 additions & 2 deletions src/Stats.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
* @method static void gauge(string $stat, float $value, float $sampleRate = 1, array $tags = [])
* @method static void histogram(string $stat, float $value, float $sampleRate = 1, array $tags = [])
* @method static void distribution(string $stat, float $value, float $sampleRate = 1, array $tags = [])
* @method static void set(string $stat, string|float $value, float $sampleRate = 1, array $tags = [])
* @method static void set(string $stat, float|string $value, float $sampleRate = 1, array $tags = [])
* @method static void increment(array|string $stats, float $sampleRate = 1, array $tags = [], int $value = 1)
* @method static void decrement(array|string $stats, float $sampleRate = 1, array $tags = [], int $value = 1)
* @method static void updateStats(array|string $stats, int $delta = 1, void $sampleRate = 1, void $tags = null)
* @method static void updateStats(array|string $stats, int $delta = 1, float $sampleRate = 1, array $tags = [])
* @method static mixed getClient()
*
* @see \Cosmastech\LaravelStatsDAdapter\AdapterManager
Expand Down

0 comments on commit a4ef534

Please sign in to comment.