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