Rabbi_Gerzi/backend/app/Auth/Clock.php

10 lines
118 B
PHP

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