summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/api/Baggage/Metadata.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/open-telemetry/api/Baggage/Metadata.php')
-rw-r--r--vendor/open-telemetry/api/Baggage/Metadata.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/vendor/open-telemetry/api/Baggage/Metadata.php b/vendor/open-telemetry/api/Baggage/Metadata.php
deleted file mode 100644
index 043c96a8a..000000000
--- a/vendor/open-telemetry/api/Baggage/Metadata.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace OpenTelemetry\API\Baggage;
-
-final class Metadata implements MetadataInterface
-{
- private static ?self $instance = null;
-
- public static function getEmpty(): Metadata
- {
- return self::$instance ??= new self('');
- }
-
- private string $metadata;
-
- public function __construct(string $metadata)
- {
- $this->metadata = $metadata;
- }
-
- public function getValue(): string
- {
- return $this->metadata;
- }
-}