| Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/spomky-labs/otphp/src/ |
| Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/spomky-labs/otphp/src/InternalClock.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();
}
}