1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-12 11:44:08 +02:00

[feature/oauth] Add unlink_account to auth interface

PHPBB3-11673
This commit is contained in:
Joseph Warner
2013-08-14 16:20:47 -04:00
parent 9c91446ef7
commit a2237ea8a7
2 changed files with 16 additions and 0 deletions

View File

@@ -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;
}
}