Goal-Calibration/app/Auth/Clock.php

13 lines
174 B
PHP

<?php
namespace App\Auth;
use DateTimeImmutable;
interface Clock
{
/**
* Returns the current time in UTC.
*/
public function now(): DateTimeImmutable;
}