public function RefreshTokenGrantService::getGrantProvider in OAuth2 Client 8.3
Same name and namespace in other branches
- 8.2 src/Service/Grant/RefreshTokenGrantService.php \Drupal\oauth2_client\Service\Grant\RefreshTokenGrantService::getGrantProvider()
Get the league/oauth2 provider.
Parameters
string $pluginId: The plugin ID of an OAuth2 Client plugin.
Return value
\League\OAuth2\Client\Provider\AbstractProvider The requested provider.
Overrides Oauth2ClientGrantServiceInterface::getGrantProvider
File
- src/
Service/ Grant/ RefreshTokenGrantService.php, line 33
Class
- RefreshTokenGrantService
- Handles Authorization Grants for the OAuth2 Client module.
Namespace
Drupal\oauth2_client\Service\GrantCode
public function getGrantProvider($pluginId) {
return $this
->getProvider($pluginId);
}