summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Trace/LinkInterface.php
blob: 8090fa1a5baa23802be42f0bcf1d0ad671f56b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

declare(strict_types=1);

namespace OpenTelemetry\SDK\Trace;

use OpenTelemetry\API\Trace\SpanContextInterface;
use OpenTelemetry\SDK\Common\Attribute\AttributesInterface;

interface LinkInterface
{
    public function getSpanContext(): SpanContextInterface;
    public function getAttributes(): AttributesInterface;
}