13 lines
134 B
PHP
13 lines
134 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OpenTelemetry\Context;
|
|
|
|
/**
|
|
* @template-covariant T
|
|
*/
|
|
interface ContextKeyInterface
|
|
{
|
|
}
|