mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-26 16:52:04 +05:30
Fix documentation error
Changed documentation as the expiry date is for the refresh token instead of the access token
This commit is contained in:
parent
6235cb2cb8
commit
f42c821a18
@ -20,7 +20,7 @@ When a new refresh token is created this method will be called. You don't have t
|
||||
The refresh token entity passed in has a number of methods you can call which contain data worth saving to a database:
|
||||
|
||||
* `getIdentifier() : string` this is randomly generated unique identifier (of 80+ characters in length) for the refresh token.
|
||||
* `getExpiryDateTime() : \DateTime` the expiry date and time of the access token.
|
||||
* `getExpiryDateTime() : \DateTime` the expiry date and time of the refresh token.
|
||||
* `getAccessToken()->getIdentifier() : string` the linked access token's identifier.
|
||||
|
||||
JWT access tokens contain an expiry date and so will be rejected automatically when used. You can safely clean up expired access tokens from your database.
|
||||
@ -31,4 +31,4 @@ This method is called when a refresh token is used to reissue an access token. T
|
||||
|
||||
## isRefreshTokenRevoked() : boolean
|
||||
|
||||
This method is called when an refresh token is used to issue a new access token. Return `true` if the refresh token has been manually revoked before it expired. If the token is still valid return `false`.
|
||||
This method is called when an refresh token is used to issue a new access token. Return `true` if the refresh token has been manually revoked before it expired. If the token is still valid return `false`.
|
||||
|
Loading…
Reference in New Issue
Block a user