1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[feature/oauth] Clean up documentation

PHPBB3-11673
This commit is contained in:
Joseph Warner
2013-07-30 14:14:48 -04:00
parent bf9d4e0cdf
commit b74e65801a
3 changed files with 6 additions and 6 deletions

View File

@@ -87,7 +87,7 @@ class phpbb_auth_provider_oauth_service_google extends phpbb_auth_provider_oauth
// Send a request with it
$result = json_decode( $this->service_provider->request('https://www.googleapis.com/oauth2/v1/userinfo'), true );
// Return the unique identifier returned from bitly
// Return the unique identifier
return $result['id'];
}
@@ -105,7 +105,7 @@ class phpbb_auth_provider_oauth_service_google extends phpbb_auth_provider_oauth
// Send a request with it
$result = json_decode( $this->service_provider->request('https://www.googleapis.com/oauth2/v1/userinfo'), true );
// Return the unique identifier returned from bitly
// Return the unique identifier
return $result['id'];
}
}