13 lines
198 B
PHP
13 lines
198 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OpenTelemetry\SDK\Trace;
|
|
|
|
interface IdGeneratorInterface
|
|
{
|
|
public function generateTraceId(): string;
|
|
|
|
public function generateSpanId(): string;
|
|
}
|