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

10 lines
118 B
PHP

<?php
namespace App\Auth;
use DateTimeImmutable;
interface Clock
{
public function now(): DateTimeImmutable;
}