19 lines
314 B
PHP
19 lines
314 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace OpenTelemetry\API\Metrics\Noop;
|
||
|
|
||
|
use OpenTelemetry\API\Metrics\CounterInterface;
|
||
|
|
||
|
/**
|
||
|
* @internal
|
||
|
*/
|
||
|
final class NoopCounter implements CounterInterface
|
||
|
{
|
||
|
public function add($amount, iterable $attributes = [], $context = null): void
|
||
|
{
|
||
|
// no-op
|
||
|
}
|
||
|
}
|