| 1 | <?php |
||
| 16 | class OauthRefreshToken implements RefreshTokenEntityInterface |
||
| 17 | { |
||
| 18 | use EntityTrait; |
||
| 19 | use RefreshTokenTrait; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var bool |
||
| 23 | */ |
||
| 24 | private $revoked = false; |
||
| 25 | |||
| 26 | public function __construct() |
||
| 30 | |||
| 31 | public function isRevoked(): bool |
||
| 35 | |||
| 36 | public function revoke(): void |
||
| 40 | } |
||
| 41 |