summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Trace/SpanConverterInterface.php
blob: 40552e440838c6c7f2d43150f7c0a683accd1596 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

declare(strict_types=1);

namespace OpenTelemetry\SDK\Trace;

interface SpanConverterInterface
{
    public function convert(iterable $spans): array;
}