12 lines
217 B
PHP
12 lines
217 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OpenTelemetry\API\Trace;
|
|
|
|
interface TracerInterface
|
|
{
|
|
/** @param non-empty-string $spanName */
|
|
public function spanBuilder(string $spanName): SpanBuilderInterface;
|
|
}
|