Newer
Older
gnexus-auth-client-php / src / Support / SystemClock.php
@Eugene Sukhodolskiy Eugene Sukhodolskiy 12 hours ago 263 bytes Initial auth client package scaffold
<?php

declare(strict_types=1);

namespace GNexus\GAuth\Support;

use GNexus\GAuth\Contract\ClockInterface;

final class SystemClock implements ClockInterface
{
    public function now(): \DateTimeImmutable
    {
        return new \DateTimeImmutable();
    }
}