Files
Wallos/libs/OTPHP/InternalClock.php
2024-09-28 18:33:09 +02:00

20 lines
279 B
PHP

<?php
declare(strict_types=1);
namespace OTPHP;
use DateTimeImmutable;
use Psr\Clock\ClockInterface;
/**
* @internal
*/
final class InternalClock implements ClockInterface
{
public function now(): DateTimeImmutable
{
return new DateTimeImmutable();
}
}