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

17 lines
328 B
PHP

<?php
declare(strict_types=1);
namespace OpenTelemetry\SDK\Common\Time;
interface ClockFactoryInterface
{
public static function create(): self;
public function build(): ClockInterface;
public static function getDefault(): ClockInterface;
public static function setDefault(?ClockInterface $clock): void;
}