{ "error_code": "500", "data": { "zhuang_tai": "token_no", "times": "1764538817" } }
<?php
declare(strict_types=1);
namespace Beste\Clock;
use Beste\Clock;
use DateTimeImmutable;
final class SystemClock implements Clock
{
private function __construct()
{
}
public static function create(): self
{
return new self();
}
public function now(): DateTimeImmutable
{
return new DateTimeImmutable();
}
}