1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 17:27:16 +02:00

[ticket/12715] Cleanup comments in \phpbb\passwords\*

PHPBB3-12715
This commit is contained in:
Tristan Darricau
2014-06-15 14:46:18 +02:00
parent 52e8359497
commit 5dfb1cc66a
17 changed files with 63 additions and 63 deletions

View File

@@ -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)
{