16 lines
339 B
PHP
16 lines
339 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OpenTelemetry\API\Trace;
|
|
|
|
/**
|
|
* @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.6.1/specification/trace/api.md#set-status
|
|
*/
|
|
interface StatusCode
|
|
{
|
|
public const STATUS_UNSET = 'Unset';
|
|
public const STATUS_OK = 'Ok';
|
|
public const STATUS_ERROR = 'Error';
|
|
}
|