summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/context/ContextKeys.php
blob: bc1022568d192ea5012ccd0b3428d0bf1e3df520 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php

declare(strict_types=1);

namespace OpenTelemetry\Context;

/**
 * @psalm-internal OpenTelemetry
 */
final class ContextKeys
{
    public static function span(): ContextKeyInterface
    {
        static $instance;

        return $instance ??= Context::createKey('opentelemetry-trace-span-key');
    }

    public static function baggage(): ContextKeyInterface
    {
        static $instance;

        return $instance ??= Context::createKey('opentelemetry-trace-baggage-key');
    }
}