Newer
Older
gnexus-auth-client-php / src / Contract / ClockInterface.php
@Eugene Sukhodolskiy Eugene Sukhodolskiy 12 hours ago 144 bytes Initial auth client package scaffold
<?php

declare(strict_types=1);

namespace GNexus\GAuth\Contract;

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