aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/passwords/driver/salted_md5.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-15 14:46:18 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-15 19:14:59 +0200
commit5dfb1cc66a9436151c85182547915f33a6f87a2c (patch)
tree6f244ec8cee00ca3ff02d876e75d8e922f23a8a0 /phpBB/phpbb/passwords/driver/salted_md5.php
parent52e835949715263f43ddfb5e6aaedc1cbb474c71 (diff)
downloadforums-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/salted_md5.php')
-rw-r--r--phpBB/phpbb/passwords/driver/salted_md5.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/phpbb/passwords/driver/salted_md5.php b/phpBB/phpbb/passwords/driver/salted_md5.php
index b5f59754e1..97a2b9154b 100644
--- a/phpBB/phpbb/passwords/driver/salted_md5.php
+++ b/phpBB/phpbb/passwords/driver/salted_md5.php
@@ -46,7 +46,7 @@ class salted_md5 extends base
const PREFIX = '$H$';
/**
- * @inheritdoc
+ * {@inheritdoc}
*/
public function get_prefix()
{
@@ -54,7 +54,7 @@ class salted_md5 extends base
}
/**
- * @inheritdoc
+ * {@inheritdoc}
*/
public function is_legacy()
{
@@ -62,7 +62,7 @@ class salted_md5 extends base
}
/**
- * @inheritdoc
+ * {@inheritdoc}
*/
public function hash($password, $setting = '')
{
@@ -98,7 +98,7 @@ class salted_md5 extends base
}
/**
- * @inheritdoc
+ * {@inheritdoc}
*/
public function check($password, $hash, $user_row = array())
{
@@ -160,7 +160,7 @@ class salted_md5 extends base
}
/**
- * @inheritdoc
+ * {@inheritdoc}
*/
public function get_settings_only($hash, $full = false)
{