diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-15 15:28:13 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-15 15:28:31 -0400 |
commit | e9bf2bf09a2b1fcee0d206b691a739600fee49e0 (patch) | |
tree | da1cf81d3359bb2a14cc654df18fbdd5e4a32543 /phpBB/phpbb/auth | |
parent | 47b998ae486ebe9c0f9df5be4e3d836b31f2c7a3 (diff) | |
download | forums-e9bf2bf09a2b1fcee0d206b691a739600fee49e0.tar forums-e9bf2bf09a2b1fcee0d206b691a739600fee49e0.tar.gz forums-e9bf2bf09a2b1fcee0d206b691a739600fee49e0.tar.bz2 forums-e9bf2bf09a2b1fcee0d206b691a739600fee49e0.tar.xz forums-e9bf2bf09a2b1fcee0d206b691a739600fee49e0.zip |
[feature/oauth] Update interface appropriately
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth')
-rw-r--r-- | phpBB/phpbb/auth/provider/oauth/service/interface.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/service/interface.php b/phpBB/phpbb/auth/provider/oauth/service/interface.php index 5893bc1740..4d06606f49 100644 --- a/phpBB/phpbb/auth/provider/oauth/service/interface.php +++ b/phpBB/phpbb/auth/provider/oauth/service/interface.php @@ -50,6 +50,13 @@ interface phpbb_auth_provider_oauth_service_interface public function get_service_credentials(); /** + * Returns the results of the authentication in json format + * + * @return type The results of the authentication action in json format. + */ + public function perform_auth_login(); + + /** * Sets the external library service provider * * @param \OAuth\Common\Service\ServiceInterface $service |