summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/context/ContextStorageHead.php
blob: 3cc4d7181cce62eb6c645018a62da5b3c0a054c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

declare(strict_types=1);

namespace OpenTelemetry\Context;

/**
 * @internal
 */
final class ContextStorageHead
{
    public ContextStorage $storage;
    public ?ContextStorageNode $node = null;

    public function __construct(ContextStorage $storage)
    {
        $this->storage = $storage;
    }
}