aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth/provider/base.php
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-08-14 16:20:47 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-08-14 16:21:06 -0400
commita2237ea8a78b6569213e095bb89a6b3f878d129b (patch)
tree858d67e002ce644c4a302c2666c6aad70d5d1e1c /phpBB/phpbb/auth/provider/base.php
parent9c91446ef793102f700fc81b1efc54055b1831ba (diff)
downloadforums-a2237ea8a78b6569213e095bb89a6b3f878d129b.tar
forums-a2237ea8a78b6569213e095bb89a6b3f878d129b.tar.gz
forums-a2237ea8a78b6569213e095bb89a6b3f878d129b.tar.bz2
forums-a2237ea8a78b6569213e095bb89a6b3f878d129b.tar.xz
forums-a2237ea8a78b6569213e095bb89a6b3f878d129b.zip
[feature/oauth] Add unlink_account to auth interface
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth/provider/base.php')
-rw-r--r--phpBB/phpbb/auth/provider/base.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/phpbb/auth/provider/base.php b/phpBB/phpbb/auth/provider/base.php
index 2f1bf8f601..09e918cee4 100644
--- a/phpBB/phpbb/auth/provider/base.php
+++ b/phpBB/phpbb/auth/provider/base.php
@@ -101,4 +101,12 @@ abstract class phpbb_auth_provider_base implements phpbb_auth_provider_interface
{
return;
}
+
+ /**
+ * {@inheritdoc}
+ */
+ public function unlink_account(array $link_data)
+ {
+ return;
+ }
}