Files
tt-rss/vendor/open-telemetry/sdk/Trace/StatusDataInterface.php
T
2023-10-20 21:13:39 +03:00

19 lines
315 B
PHP

<?php
declare(strict_types=1);
namespace OpenTelemetry\SDK\Trace;
interface StatusDataInterface
{
public static function ok(): self;
public static function error(): self;
public static function unset(): self;
public function getCode(): string;
public function getDescription(): string;
}