summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Metrics/MetricRegistrationInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/open-telemetry/sdk/Metrics/MetricRegistrationInterface.php')
-rw-r--r--vendor/open-telemetry/sdk/Metrics/MetricRegistrationInterface.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/open-telemetry/sdk/Metrics/MetricRegistrationInterface.php b/vendor/open-telemetry/sdk/Metrics/MetricRegistrationInterface.php
new file mode 100644
index 000000000..b0cc2484e
--- /dev/null
+++ b/vendor/open-telemetry/sdk/Metrics/MetricRegistrationInterface.php
@@ -0,0 +1,13 @@
+<?php
+
+declare(strict_types=1);
+
+namespace OpenTelemetry\SDK\Metrics;
+
+/**
+ * @internal
+ */
+interface MetricRegistrationInterface
+{
+ public function register(MetricSourceProviderInterface $provider, MetricMetadataInterface $metadata): void;
+}