aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/passwords/manager.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/manager.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/manager.php')
-rw-r--r--phpBB/phpbb/passwords/manager.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/phpbb/passwords/manager.php b/phpBB/phpbb/passwords/manager.php
index 0a349c4a14..fbb49d86a0 100644
--- a/phpBB/phpbb/passwords/manager.php
+++ b/phpBB/phpbb/passwords/manager.php
@@ -39,23 +39,23 @@ class manager
/**
* Passwords helper
- * @var phpbb\passwords\helper
+ * @var \phpbb\passwords\helper
*/
protected $helper;
/**
* phpBB configuration
- * @var phpbb\config\config
+ * @var \phpbb\config\config
*/
protected $config;
/**
* Construct a passwords object
*
- * @param phpbb\config\config $config phpBB configuration
+ * @param \phpbb\config\config $config phpBB configuration
* @param array $hashing_algorithms Hashing driver
* service collection
- * @param phpbb\passwords\helper $helper Passwords helper object
+ * @param \phpbb\passwords\helper $helper Passwords helper object
* @param string $defaults List of default driver types
*/
public function __construct(\phpbb\config\config $config, $hashing_algorithms, helper $helper, $defaults)
@@ -89,7 +89,7 @@ class manager
/**
* Fill algorithm type map
*
- * @param phpbb\di\service_collection $hashing_algorithms
+ * @param \phpbb\di\service_collection $hashing_algorithms
*/
protected function fill_type_map($hashing_algorithms)
{