| Current Path : /var/www/v3.cesa.co.za/vendor/league/oauth2-server-bundle/src/Model/ |
| 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;
}