1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-13 09:53:12 +02:00

[feature/auth-refactor] Code style fix for doc blocks

PHPBB3-9734
This commit is contained in:
Joseph Warner
2013-07-11 11:31:50 -04:00
parent ccef1ae5ab
commit 177e340764

@ -16,47 +16,47 @@ if (!defined('IN_PHPBB'))
}
/**
* Base authentication provider class that all other providers should implement.
*
* @package auth
*/
* Base authentication provider class that all other providers should implement.
*
* @package auth
*/
abstract class phpbb_auth_provider_base implements phpbb_auth_provider_interface
{
/**
* {@inheritdoc}
*/
* {@inheritdoc}
*/
public function init()
{
return;
}
/**
* {@inheritdoc}
*/
* {@inheritdoc}
*/
public function autologin()
{
return;
}
/**
* {@inheritdoc}
*/
* {@inheritdoc}
*/
public function acp($new)
{
return;
}
/**
* {@inheritdoc}
*/
* {@inheritdoc}
*/
public function logout($data, $new_session)
{
return;
}
/**
* {@inheritdoc}
*/
* {@inheritdoc}
*/
public function validate_session($user)
{
return;