You are here

public function Oauth2ClientPluginBase::getId in OAuth2 Client 8.2

Same name and namespace in other branches
  1. 8.3 src/Plugin/Oauth2Client/Oauth2ClientPluginBase.php \Drupal\oauth2_client\Plugin\Oauth2Client\Oauth2ClientPluginBase::getId()

Retrieves the id of the OAuth2 Client plugin.

Return value

string The id of the plugin.

Overrides Oauth2ClientPluginInterface::getId

File

src/Plugin/Oauth2Client/Oauth2ClientPluginBase.php, line 69

Class

Oauth2ClientPluginBase
Base class for Oauth2Client plugins.

Namespace

Drupal\oauth2_client\Plugin\Oauth2Client

Code

public function getId() {
  $this
    ->checkKeyDefined('id');
  return $this->pluginDefinition['id'];
}