<?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();
    }
}

