| Current Path : /var/www/magento.test.indacotrentino.com/www/vendor/spomky-labs/otphp/src/ |
| Current File : /var/www/magento.test.indacotrentino.com/www/vendor/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();
}
}