We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54cc829 commit c08fd0fCopy full SHA for c08fd0f
src/OAuth2ServerServiceProvider.php
@@ -108,6 +108,9 @@ public function registerAuthorizer()
108
if (array_key_exists('refresh_token_ttl', $grantParams)) {
109
$grant->setRefreshTokenTTL($grantParams['refresh_token_ttl']);
110
}
111
+ if (array_key_exists('rotate_refresh_tokens', $grantParams)) {
112
+ $grant->setRefreshTokenRotation($grantParams['rotate_refresh_tokens']);
113
+ }
114
$issuer->addGrantType($grant);
115
116
0 commit comments