add clock interface

This commit is contained in:
Yisroel Baum 2026-04-24 13:23:30 +03:00
parent 057df09dda
commit 04712bdd2d
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

10
app/Auth/Clock.php Normal file
View file

@ -0,0 +1,10 @@
<?php
namespace App\Auth;
use DateTimeImmutable;
interface Clock
{
public function now(): DateTimeImmutable;
}