<?php

declare(strict_types=1);

namespace GNexus\GAuth\Contract;

interface ClockInterface
{
    public function now(): \DateTimeImmutable;
}

