aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/auth/provider/base.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/auth/provider/base.php')
-rw-r--r--phpBB/includes/auth/provider/base.php28
1 files changed, 14 insertions, 14 deletions
diff --git a/phpBB/includes/auth/provider/base.php b/phpBB/includes/auth/provider/base.php
index 307988f00a..046674e55e 100644
--- a/phpBB/includes/auth/provider/base.php
+++ b/phpBB/includes/auth/provider/base.php
@@ -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;