summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/api/Baggage/MetadataInterface.php
blob: cd0a6d1ec97d27f14c184371aba759282180a974 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

declare(strict_types=1);

namespace OpenTelemetry\API\Baggage;

/**
 * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.6.1/specification/baggage/api.md#set-value
 */
interface MetadataInterface
{
    public function getValue(): string;
}