diff options
| author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-14 17:23:40 -0400 |
|---|---|---|
| committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-14 17:24:01 -0400 |
| commit | 247a002a144ecfc882f365ad54c63663a9b00090 (patch) | |
| tree | 0eaeaaa0e791e306069926ccfe87f01923a05fab /phpBB/phpbb/auth/provider/oauth/service/google.php | |
| parent | 440904a0c8b9fb8da124d879366ae5284532c23e (diff) | |
| download | forums-247a002a144ecfc882f365ad54c63663a9b00090.tar forums-247a002a144ecfc882f365ad54c63663a9b00090.tar.gz forums-247a002a144ecfc882f365ad54c63663a9b00090.tar.bz2 forums-247a002a144ecfc882f365ad54c63663a9b00090.tar.xz forums-247a002a144ecfc882f365ad54c63663a9b00090.zip | |
[feature/oauth] Add constructors
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/service/google.php')
| -rw-r--r-- | phpBB/phpbb/auth/provider/oauth/service/google.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/service/google.php b/phpBB/phpbb/auth/provider/oauth/service/google.php index 50cfee86e0..b9b1851424 100644 --- a/phpBB/phpbb/auth/provider/oauth/service/google.php +++ b/phpBB/phpbb/auth/provider/oauth/service/google.php @@ -23,6 +23,23 @@ if (!defined('IN_PHPBB')) class phpbb_auth_provider_oauth_service_google extends phpbb_auth_provider_oauth_service_base { /** + * phpBB config + * + * @var phpbb_config + */ + protected $config; + + /** + * Constructor + * + * @param phpbb_config $config + */ + public function __construct(phpbb_config $config) + { + $this->config = $config; + } + + /** * {@inheritdoc} */ public function get_auth_scope() |
