diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-06-15 14:46:18 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-06-15 19:14:59 +0200 |
commit | 5dfb1cc66a9436151c85182547915f33a6f87a2c (patch) | |
tree | 6f244ec8cee00ca3ff02d876e75d8e922f23a8a0 /phpBB/phpbb/passwords/driver/bcrypt.php | |
parent | 52e835949715263f43ddfb5e6aaedc1cbb474c71 (diff) | |
download | forums-5dfb1cc66a9436151c85182547915f33a6f87a2c.tar forums-5dfb1cc66a9436151c85182547915f33a6f87a2c.tar.gz forums-5dfb1cc66a9436151c85182547915f33a6f87a2c.tar.bz2 forums-5dfb1cc66a9436151c85182547915f33a6f87a2c.tar.xz forums-5dfb1cc66a9436151c85182547915f33a6f87a2c.zip |
[ticket/12715] Cleanup comments in \phpbb\passwords\*
PHPBB3-12715
Diffstat (limited to 'phpBB/phpbb/passwords/driver/bcrypt.php')
-rw-r--r-- | phpBB/phpbb/passwords/driver/bcrypt.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/phpbb/passwords/driver/bcrypt.php b/phpBB/phpbb/passwords/driver/bcrypt.php index de5840c7cf..23add37a56 100644 --- a/phpBB/phpbb/passwords/driver/bcrypt.php +++ b/phpBB/phpbb/passwords/driver/bcrypt.php @@ -18,7 +18,7 @@ class bcrypt extends base const PREFIX = '$2a$'; /** - * @inheritdoc + * {@inheritdoc} */ public function get_prefix() { @@ -26,7 +26,7 @@ class bcrypt extends base } /** - * @inheritdoc + * {@inheritdoc} */ public function hash($password, $salt = '') { @@ -58,7 +58,7 @@ class bcrypt extends base } /** - * @inheritdoc + * {@inheritdoc} */ public function check($password, $hash, $user_row = array()) { @@ -86,7 +86,7 @@ class bcrypt extends base } /** - * @inheritdoc + * {@inheritdoc} */ public function get_settings_only($hash, $full = false) { |