aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-07-11 11:31:50 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-07-11 11:31:50 -0400
commit177e340764ccb929d3ebfe978ce05ceba271f479 (patch)
tree63565487e3ba929a9efad23ca803e103394bac6a /phpBB
parentccef1ae5ab406f6e6c4110467e1077ab58135e30 (diff)
downloadforums-177e340764ccb929d3ebfe978ce05ceba271f479.tar
forums-177e340764ccb929d3ebfe978ce05ceba271f479.tar.gz
forums-177e340764ccb929d3ebfe978ce05ceba271f479.tar.bz2
forums-177e340764ccb929d3ebfe978ce05ceba271f479.tar.xz
forums-177e340764ccb929d3ebfe978ce05ceba271f479.zip
[feature/auth-refactor] Code style fix for doc blocks
PHPBB3-9734
Diffstat (limited to 'phpBB')
-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;