28 lines
493 B
PHP
28 lines
493 B
PHP
|
<?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;
|
||
|
}
|
||
|
}
|