aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth/provider/oauth/service/paypal.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/service/paypal.php')
-rw-r--r--phpBB/phpbb/auth/provider/oauth/service/paypal.php12
1 files changed, 11 insertions, 1 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/service/paypal.php b/phpBB/phpbb/auth/provider/oauth/service/paypal.php
index 983b008dc3..26038d4fcb 100644
--- a/phpBB/phpbb/auth/provider/oauth/service/paypal.php
+++ b/phpBB/phpbb/auth/provider/oauth/service/paypal.php
@@ -22,5 +22,15 @@ if (!defined('IN_PHPBB'))
*/
class phpbb_auth_provider_oauth_service_paypal extends phpbb_auth_provider_oauth_service_base
{
-
+ /**
+ * {@inheritdoc}
+ */
+ public function get_auth_scope()
+ {
+ return array(
+ 'openid',
+ 'profile',
+ 'email',
+ );
+ }
}