Your IP : 216.73.217.79


Current Path : /var/www/v3.cesa.co.za/vendor/league/oauth2-server-bundle/src/Model/
Upload File :
Current File : /var/www/v3.cesa.co.za/vendor/league/oauth2-server-bundle/src/Model/RefreshTokenInterface.php

<?php

declare(strict_types=1);

namespace League\Bundle\OAuth2ServerBundle\Model;

interface RefreshTokenInterface
{
    public function __toString(): string;

    public function getIdentifier(): string;

    public function getExpiry(): \DateTimeInterface;

    public function getAccessToken(): ?AccessTokenInterface;

    public function isRevoked(): bool;

    public function revoke(): self;
}