public function OAuth2Storage::getClientScope in OAuth2 Server 8
Same name and namespace in other branches
- 2.0.x src/OAuth2Storage.php \Drupal\oauth2_server\OAuth2Storage::getClientScope()
Get client scope.
Parameters
string $client_id: The client id string.
Return value
null The module doesn't currently support per-client scopes.
File
- src/
OAuth2Storage.php, line 271
Class
- OAuth2Storage
- Provides Drupal OAuth2 storage for the library.
Namespace
Drupal\oauth2_serverCode
public function getClientScope($client_id) {
return NULL;
}