mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 14:57:37 +02:00
[ticket/12715] Cleanup comments in \phpbb\passwords\*
PHPBB3-12715
This commit is contained in:
@@ -15,10 +15,10 @@ namespace phpbb\passwords\driver;
|
|||||||
|
|
||||||
abstract class base implements driver_interface
|
abstract class base implements driver_interface
|
||||||
{
|
{
|
||||||
/** @var phpbb\config\config */
|
/** @var \phpbb\config\config */
|
||||||
protected $config;
|
protected $config;
|
||||||
|
|
||||||
/** @var phpbb\passwords\driver\helper */
|
/** @var \phpbb\passwords\driver\helper */
|
||||||
protected $helper;
|
protected $helper;
|
||||||
|
|
||||||
/** @var driver name */
|
/** @var driver name */
|
||||||
@@ -37,7 +37,7 @@ abstract class base implements driver_interface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function is_supported()
|
public function is_supported()
|
||||||
{
|
{
|
||||||
@@ -45,7 +45,7 @@ abstract class base implements driver_interface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function is_legacy()
|
public function is_legacy()
|
||||||
{
|
{
|
||||||
@@ -53,7 +53,7 @@ abstract class base implements driver_interface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_settings_only($hash, $full = false)
|
public function get_settings_only($hash, $full = false)
|
||||||
{
|
{
|
||||||
|
@@ -18,7 +18,7 @@ class bcrypt extends base
|
|||||||
const PREFIX = '$2a$';
|
const PREFIX = '$2a$';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_prefix()
|
public function get_prefix()
|
||||||
{
|
{
|
||||||
@@ -26,7 +26,7 @@ class bcrypt extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function hash($password, $salt = '')
|
public function hash($password, $salt = '')
|
||||||
{
|
{
|
||||||
@@ -58,7 +58,7 @@ class bcrypt extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function check($password, $hash, $user_row = array())
|
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)
|
public function get_settings_only($hash, $full = false)
|
||||||
{
|
{
|
||||||
|
@@ -18,7 +18,7 @@ class bcrypt_2y extends bcrypt
|
|||||||
const PREFIX = '$2y$';
|
const PREFIX = '$2y$';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_prefix()
|
public function get_prefix()
|
||||||
{
|
{
|
||||||
@@ -26,7 +26,7 @@ class bcrypt_2y extends bcrypt
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function is_supported()
|
public function is_supported()
|
||||||
{
|
{
|
||||||
|
@@ -20,7 +20,7 @@ class bcrypt_wcf2 extends base
|
|||||||
/** @var \phpbb\passwords\driver\bcrypt */
|
/** @var \phpbb\passwords\driver\bcrypt */
|
||||||
protected $bcrypt;
|
protected $bcrypt;
|
||||||
|
|
||||||
/** @var phpbb\passwords\driver\helper */
|
/** @var \phpbb\passwords\driver\helper */
|
||||||
protected $helper;
|
protected $helper;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -36,7 +36,7 @@ class bcrypt_wcf2 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_prefix()
|
public function get_prefix()
|
||||||
{
|
{
|
||||||
@@ -44,7 +44,7 @@ class bcrypt_wcf2 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function is_legacy()
|
public function is_legacy()
|
||||||
{
|
{
|
||||||
@@ -52,7 +52,7 @@ class bcrypt_wcf2 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function hash($password, $user_row = '')
|
public function hash($password, $user_row = '')
|
||||||
{
|
{
|
||||||
@@ -61,7 +61,7 @@ class bcrypt_wcf2 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function check($password, $hash, $user_row = array())
|
public function check($password, $hash, $user_row = array())
|
||||||
{
|
{
|
||||||
|
@@ -18,7 +18,7 @@ class convert_password extends base
|
|||||||
const PREFIX = '$CP$';
|
const PREFIX = '$CP$';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_prefix()
|
public function get_prefix()
|
||||||
{
|
{
|
||||||
@@ -26,7 +26,7 @@ class convert_password extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function hash($password, $user_row = '')
|
public function hash($password, $user_row = '')
|
||||||
{
|
{
|
||||||
@@ -34,7 +34,7 @@ class convert_password extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function check($password, $hash, $user_row = array())
|
public function check($password, $hash, $user_row = array())
|
||||||
{
|
{
|
||||||
|
@@ -51,7 +51,7 @@ interface driver_interface
|
|||||||
*
|
*
|
||||||
* @param string $password The password to check
|
* @param string $password The password to check
|
||||||
* @param string $hash The password hash to check against
|
* @param string $hash The password hash to check against
|
||||||
* @param string $user_row User's row in users table
|
* @param array $user_row User's row in users table
|
||||||
*
|
*
|
||||||
* @return bool True if password is correct, else false
|
* @return bool True if password is correct, else false
|
||||||
*/
|
*/
|
||||||
|
@@ -16,7 +16,7 @@ namespace phpbb\passwords\driver;
|
|||||||
class helper
|
class helper
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @var phpbb\config\config
|
* @var \phpbb\config\config
|
||||||
*/
|
*/
|
||||||
protected $config;
|
protected $config;
|
||||||
|
|
||||||
@@ -29,7 +29,7 @@ class helper
|
|||||||
/**
|
/**
|
||||||
* Construct a driver helper object
|
* Construct a driver helper object
|
||||||
*
|
*
|
||||||
* @param phpbb\config\config $config phpBB configuration
|
* @param \phpbb\config\config $config phpBB configuration
|
||||||
*/
|
*/
|
||||||
public function __construct(\phpbb\config\config $config)
|
public function __construct(\phpbb\config\config $config)
|
||||||
{
|
{
|
||||||
|
@@ -18,7 +18,7 @@ class md5_mybb extends base
|
|||||||
const PREFIX = '$md5_mybb$';
|
const PREFIX = '$md5_mybb$';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_prefix()
|
public function get_prefix()
|
||||||
{
|
{
|
||||||
@@ -26,7 +26,7 @@ class md5_mybb extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function is_legacy()
|
public function is_legacy()
|
||||||
{
|
{
|
||||||
@@ -34,7 +34,7 @@ class md5_mybb extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function hash($password, $user_row = '')
|
public function hash($password, $user_row = '')
|
||||||
{
|
{
|
||||||
@@ -43,7 +43,7 @@ class md5_mybb extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function check($password, $hash, $user_row = array())
|
public function check($password, $hash, $user_row = array())
|
||||||
{
|
{
|
||||||
|
@@ -23,10 +23,10 @@ class md5_phpbb2 extends base
|
|||||||
/** @var \phpbb\passwords\driver\salted_md5 */
|
/** @var \phpbb\passwords\driver\salted_md5 */
|
||||||
protected $salted_md5;
|
protected $salted_md5;
|
||||||
|
|
||||||
/** @var phpBB root path */
|
/** @var string phpBB root path */
|
||||||
protected $phpbb_root_path;
|
protected $phpbb_root_path;
|
||||||
|
|
||||||
/** @var php file extension */
|
/** @var string php file extension */
|
||||||
protected $php_ext;
|
protected $php_ext;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -46,7 +46,7 @@ class md5_phpbb2 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_prefix()
|
public function get_prefix()
|
||||||
{
|
{
|
||||||
@@ -54,7 +54,7 @@ class md5_phpbb2 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function is_legacy()
|
public function is_legacy()
|
||||||
{
|
{
|
||||||
@@ -62,7 +62,7 @@ class md5_phpbb2 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function hash($password, $user_row = '')
|
public function hash($password, $user_row = '')
|
||||||
{
|
{
|
||||||
@@ -71,7 +71,7 @@ class md5_phpbb2 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function check($password, $hash, $user_row = array())
|
public function check($password, $hash, $user_row = array())
|
||||||
{
|
{
|
||||||
|
@@ -18,7 +18,7 @@ class md5_vb extends base
|
|||||||
const PREFIX = '$md5_vb$';
|
const PREFIX = '$md5_vb$';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_prefix()
|
public function get_prefix()
|
||||||
{
|
{
|
||||||
@@ -26,7 +26,7 @@ class md5_vb extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function is_legacy()
|
public function is_legacy()
|
||||||
{
|
{
|
||||||
@@ -34,7 +34,7 @@ class md5_vb extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function hash($password, $user_row = '')
|
public function hash($password, $user_row = '')
|
||||||
{
|
{
|
||||||
@@ -43,7 +43,7 @@ class md5_vb extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function check($password, $hash, $user_row = array())
|
public function check($password, $hash, $user_row = array())
|
||||||
{
|
{
|
||||||
|
@@ -18,7 +18,7 @@ class phpass extends salted_md5
|
|||||||
const PREFIX = '$P$';
|
const PREFIX = '$P$';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_prefix()
|
public function get_prefix()
|
||||||
{
|
{
|
||||||
|
@@ -46,7 +46,7 @@ class salted_md5 extends base
|
|||||||
const PREFIX = '$H$';
|
const PREFIX = '$H$';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_prefix()
|
public function get_prefix()
|
||||||
{
|
{
|
||||||
@@ -54,7 +54,7 @@ class salted_md5 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function is_legacy()
|
public function is_legacy()
|
||||||
{
|
{
|
||||||
@@ -62,7 +62,7 @@ class salted_md5 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function hash($password, $setting = '')
|
public function hash($password, $setting = '')
|
||||||
{
|
{
|
||||||
@@ -98,7 +98,7 @@ class salted_md5 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function check($password, $hash, $user_row = array())
|
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)
|
public function get_settings_only($hash, $full = false)
|
||||||
{
|
{
|
||||||
|
@@ -18,7 +18,7 @@ class sha1 extends base
|
|||||||
const PREFIX = '$sha1$';
|
const PREFIX = '$sha1$';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_prefix()
|
public function get_prefix()
|
||||||
{
|
{
|
||||||
@@ -26,7 +26,7 @@ class sha1 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function is_legacy()
|
public function is_legacy()
|
||||||
{
|
{
|
||||||
@@ -34,7 +34,7 @@ class sha1 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function hash($password, $user_row = '')
|
public function hash($password, $user_row = '')
|
||||||
{
|
{
|
||||||
@@ -43,7 +43,7 @@ class sha1 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function check($password, $hash, $user_row = array())
|
public function check($password, $hash, $user_row = array())
|
||||||
{
|
{
|
||||||
|
@@ -18,7 +18,7 @@ class sha1_smf extends base
|
|||||||
const PREFIX = '$smf$';
|
const PREFIX = '$smf$';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_prefix()
|
public function get_prefix()
|
||||||
{
|
{
|
||||||
@@ -26,7 +26,7 @@ class sha1_smf extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function is_legacy()
|
public function is_legacy()
|
||||||
{
|
{
|
||||||
@@ -34,7 +34,7 @@ class sha1_smf extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function hash($password, $user_row = '')
|
public function hash($password, $user_row = '')
|
||||||
{
|
{
|
||||||
@@ -42,7 +42,7 @@ class sha1_smf extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function check($password, $hash, $user_row = array())
|
public function check($password, $hash, $user_row = array())
|
||||||
{
|
{
|
||||||
|
@@ -18,7 +18,7 @@ class sha1_wcf1 extends base
|
|||||||
const PREFIX = '$wcf1$';
|
const PREFIX = '$wcf1$';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_prefix()
|
public function get_prefix()
|
||||||
{
|
{
|
||||||
@@ -26,7 +26,7 @@ class sha1_wcf1 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function is_legacy()
|
public function is_legacy()
|
||||||
{
|
{
|
||||||
@@ -34,7 +34,7 @@ class sha1_wcf1 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function hash($password, $user_row = '')
|
public function hash($password, $user_row = '')
|
||||||
{
|
{
|
||||||
@@ -43,7 +43,7 @@ class sha1_wcf1 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function check($password, $hash, $user_row = array())
|
public function check($password, $hash, $user_row = array())
|
||||||
{
|
{
|
||||||
|
@@ -18,7 +18,7 @@ class sha_xf1 extends base
|
|||||||
const PREFIX = '$xf1$';
|
const PREFIX = '$xf1$';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_prefix()
|
public function get_prefix()
|
||||||
{
|
{
|
||||||
@@ -26,7 +26,7 @@ class sha_xf1 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function is_legacy()
|
public function is_legacy()
|
||||||
{
|
{
|
||||||
@@ -34,7 +34,7 @@ class sha_xf1 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function hash($password, $user_row = '')
|
public function hash($password, $user_row = '')
|
||||||
{
|
{
|
||||||
@@ -43,7 +43,7 @@ class sha_xf1 extends base
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function check($password, $hash, $user_row = array())
|
public function check($password, $hash, $user_row = array())
|
||||||
{
|
{
|
||||||
|
@@ -39,23 +39,23 @@ class manager
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Passwords helper
|
* Passwords helper
|
||||||
* @var phpbb\passwords\helper
|
* @var \phpbb\passwords\helper
|
||||||
*/
|
*/
|
||||||
protected $helper;
|
protected $helper;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* phpBB configuration
|
* phpBB configuration
|
||||||
* @var phpbb\config\config
|
* @var \phpbb\config\config
|
||||||
*/
|
*/
|
||||||
protected $config;
|
protected $config;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct a passwords object
|
* Construct a passwords object
|
||||||
*
|
*
|
||||||
* @param phpbb\config\config $config phpBB configuration
|
* @param \phpbb\config\config $config phpBB configuration
|
||||||
* @param array $hashing_algorithms Hashing driver
|
* @param array $hashing_algorithms Hashing driver
|
||||||
* service collection
|
* 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
|
* @param string $defaults List of default driver types
|
||||||
*/
|
*/
|
||||||
public function __construct(\phpbb\config\config $config, $hashing_algorithms, helper $helper, $defaults)
|
public function __construct(\phpbb\config\config $config, $hashing_algorithms, helper $helper, $defaults)
|
||||||
@@ -89,7 +89,7 @@ class manager
|
|||||||
/**
|
/**
|
||||||
* Fill algorithm type map
|
* 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)
|
protected function fill_type_map($hashing_algorithms)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user