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
3 changes: 2 additions & 1 deletion config/statsd-adapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"default_tags" => [],

/**
* You may name your channel anything you wish. Valid drivers are:
* You may name your channel anything you wish. Valid adapters are:
* memory
* league
* datadog
Expand Down Expand Up @@ -49,6 +49,7 @@
"global_tags" => [],
"metric_prefix" => null,
"disable_telemetry" => null,
"origin_detection" => false,
],
],
];
2 changes: 1 addition & 1 deletion src/AdapterManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ protected function createLogDatadogAdapter(array $config): DatadogStatsDClientAd
protected function createDatadogAdapter(array $config): DatadogStatsDClientAdapter
{
return new DatadogStatsDClientAdapter(
new DogStatsd($config),
new DogStatsd($config), // @phpstan-ignore argument.type
$this->getDefaultTags(),
clock: $this->getClockImplementation()
);
Expand Down