Files
tt-rss/vendor/open-telemetry/api/Baggage/MetadataInterface.php
2023-10-20 21:13:39 +03:00

14 lines
272 B
PHP

<?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;
}