<?php

declare(strict_types=1);

namespace GNexus\GAuth\Contract;

interface PkceStoreInterface
{
    public function put(string $state, string $verifier, \DateTimeImmutable $expiresAt): void;

    public function get(string $state): ?string;

    public function forget(string $state): void;
}

