public function Storage::expireAuthorizationCode in OAuth2 Server 7
File
- lib/
Drupal/ oauth2_server/ Storage.php, line 236
Class
- Storage
- Provides Drupal storage (through the underlying Entity API) for the library.
Namespace
Drupal\oauth2_serverCode
public function expireAuthorizationCode($code) {
$code = oauth2_server_authorization_code_load($code);
if ($code) {
$code
->delete();
}
}