mirror of
https://gitee.com/ctexthuang/hyperf_rbac_framework_server_ctexthuang.git
synced 2025-12-25 23:57:49 +08:00
15 lines
255 B
PHP
15 lines
255 B
PHP
<?php
|
|
|
|
namespace App\Lib\Jwt;
|
|
|
|
use Carbon\Carbon;
|
|
use DateTimeImmutable;
|
|
use Psr\Clock\ClockInterface;
|
|
|
|
class Clock implements ClockInterface
|
|
{
|
|
public function now(): DateTimeImmutable
|
|
{
|
|
return Carbon::now()->toDateTimeImmutable();
|
|
}
|
|
} |