You are here

public function OauthTokenFileStorage::getScope in Apigee Edge 8

File

src/OauthTokenFileStorage.php, line 127

Class

OauthTokenFileStorage
Stores OAuth token data in a file.

Namespace

Drupal\apigee_edge

Code

public function getScope() : string {
  $token_data = $this
    ->getTokenData();
  return $token_data['scope'] ?? '';
}