diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-29 16:12:36 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-29 16:12:47 -0400 |
commit | e91b73e62d32a031625651133a51e9310cfcadbf (patch) | |
tree | 6c9a85611f36cf009ae5f213cd61bd610bb30c71 /phpBB/phpbb/auth/provider/base.php | |
parent | d21ab4f629342d9f1bb46f489f166c9016ebe72b (diff) | |
download | forums-e91b73e62d32a031625651133a51e9310cfcadbf.tar forums-e91b73e62d32a031625651133a51e9310cfcadbf.tar.gz forums-e91b73e62d32a031625651133a51e9310cfcadbf.tar.bz2 forums-e91b73e62d32a031625651133a51e9310cfcadbf.tar.xz forums-e91b73e62d32a031625651133a51e9310cfcadbf.zip |
[feature/oauth] Update the auth interface
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth/provider/base.php')
-rw-r--r-- | phpBB/phpbb/auth/provider/base.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/phpBB/phpbb/auth/provider/base.php b/phpBB/phpbb/auth/provider/base.php index 7eaf8bb2d3..ca1c635b15 100644 --- a/phpBB/phpbb/auth/provider/base.php +++ b/phpBB/phpbb/auth/provider/base.php @@ -69,4 +69,20 @@ abstract class phpbb_auth_provider_base implements phpbb_auth_provider_interface { return; } + + /** + * {@inheritdoc} + */ + public function login_link_has_necessary_data($login_link_data) + { + return; + } + + /** + * {@inheritdoc} + */ + public function link_account(array $link_data) + { + return; + } } |