1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-26 16:37:33 +02:00
ttrss/vendor/open-telemetry/api/Trace/StatusCode.php

16 lines
339 B
PHP
Raw Normal View History

2023-10-20 16:12:29 +02:00
<?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';
}