aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth/provider/oauth/service/google.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/service/google.php')
-rw-r--r--phpBB/phpbb/auth/provider/oauth/service/google.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/service/google.php b/phpBB/phpbb/auth/provider/oauth/service/google.php
index 70bad77697..3e5735b97c 100644
--- a/phpBB/phpbb/auth/provider/oauth/service/google.php
+++ b/phpBB/phpbb/auth/provider/oauth/service/google.php
@@ -30,13 +30,22 @@ class phpbb_auth_provider_oauth_service_google extends phpbb_auth_provider_oauth
protected $config;
/**
+ * phpBB request
+ *
+ * @var phpbb_request
+ */
+ protected $request;
+
+ /**
* Constructor
*
* @param phpbb_config $config
+ * @param phpbb_request $request
*/
- public function __construct(phpbb_config $config)
+ public function __construct(phpbb_config $config, phpbb_request $request)
{
$this->config = $config;
+ $this->request = $request;
}
/**