1 | <?php |
||
26 | class OauthRefreshToken implements RefreshTokenEntityInterface |
||
27 | { |
||
28 | use EntityTrait; |
||
29 | use RefreshTokenTrait; |
||
30 | |||
31 | /** |
||
32 | * @var bool |
||
33 | */ |
||
34 | private $revoked = false; |
||
35 | |||
36 | public function __construct() |
||
40 | |||
41 | public function isRevoked(): bool |
||
45 | |||
46 | public function revoke(): void |
||
50 | } |
||
51 |