add auth sessions

This commit is contained in:
Yisroel Baum 2026-07-31 09:51:39 +03:00
parent a37c8da555
commit 34e26f81f5
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
9 changed files with 243 additions and 0 deletions

View file

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