diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-11 11:31:50 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-11 11:31:50 -0400 |
commit | 177e340764ccb929d3ebfe978ce05ceba271f479 (patch) | |
tree | 63565487e3ba929a9efad23ca803e103394bac6a /phpBB | |
parent | ccef1ae5ab406f6e6c4110467e1077ab58135e30 (diff) | |
download | forums-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.php | 28 |
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; |