Goal-Calibration/app/Auth/SystemClock.php
2026-04-24 13:23:38 +03:00

13 lines
188 B
PHP

<?php
namespace App\Auth;
use DateTimeImmutable;
class SystemClock implements Clock
{
public function now(): DateTimeImmutable
{
return new DateTimeImmutable();
}
}