summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Metrics/MetricRegistrationInterface.php
blob: b0cc2484ed0b57c8a1c587717eff121bfc304656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

declare(strict_types=1);

namespace OpenTelemetry\SDK\Metrics;

/**
 * @internal
 */
interface MetricRegistrationInterface
{
    public function register(MetricSourceProviderInterface $provider, MetricMetadataInterface $metadata): void;
}