Your IP : 216.73.216.81


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