diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-14 16:01:41 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-14 16:02:10 -0400 |
commit | a8e60c306d605815abfa0f4204e30466ecfbd539 (patch) | |
tree | 8612d73c1f08140a1fe2944ad9a516fb2dee42d0 /phpBB | |
parent | 6a2871692cb9b2e9027b026604e8f456f17d1b44 (diff) | |
download | forums-a8e60c306d605815abfa0f4204e30466ecfbd539.tar forums-a8e60c306d605815abfa0f4204e30466ecfbd539.tar.gz forums-a8e60c306d605815abfa0f4204e30466ecfbd539.tar.bz2 forums-a8e60c306d605815abfa0f4204e30466ecfbd539.tar.xz forums-a8e60c306d605815abfa0f4204e30466ecfbd539.zip |
[feature/oauth] Remove get_service_credentials() from oauth provider
PHPBB3-11673
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/auth/provider/oauth/oauth.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/oauth.php b/phpBB/phpbb/auth/provider/oauth/oauth.php index 75e8a54ed4..c4908dbf6c 100644 --- a/phpBB/phpbb/auth/provider/oauth/oauth.php +++ b/phpBB/phpbb/auth/provider/oauth/oauth.php @@ -148,26 +148,6 @@ class phpbb_auth_provider_oauth extends phpbb_auth_provider_base } /** - * Returns an array containing the service credentials belonging to requested - * service. - * - * @param string $service_name The name of the service - * @return array An array containing the 'key' and the 'secret' of the - * service in the form: - * array( - * 'key' => string - * 'secret' => string - * ) - */ - protected function get_service_credentials($service_name) - { - return array( - 'key' => $this->config['auth_oauth_' . $service_name . '_key'], - 'secret' => $this->config['auth_oauth_' . $service_name . '_secret'], - ); - } - - /** * Returns the cached current_uri object or creates and caches it if it is * not already created * |