mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[feature/passwords] Remove unneeded definitions of full namespace
PHPBB3-11610
This commit is contained in:
parent
8383d1f1d3
commit
1465915830
3 changed files with 3 additions and 3 deletions
|
@ -29,7 +29,7 @@ abstract class base implements driver_interface
|
|||
* @param \phpbb\config\config $config phpBB config
|
||||
* @param \phpbb\passwords\driver\helper $helper Password driver helper
|
||||
*/
|
||||
public function __construct(\phpbb\config\config $config, \phpbb\passwords\driver\helper $helper)
|
||||
public function __construct(\phpbb\config\config $config, helper $helper)
|
||||
{
|
||||
$this->config = $config;
|
||||
$this->helper = $helper;
|
||||
|
|
|
@ -24,7 +24,7 @@ class helper
|
|||
*
|
||||
* @param phpbb\passwords\manager $manager Passwords manager object
|
||||
*/
|
||||
public function set_manager(\phpbb\passwords\manager $manager)
|
||||
public function set_manager(manager $manager)
|
||||
{
|
||||
$this->manager = $manager;
|
||||
}
|
||||
|
|
|
@ -57,7 +57,7 @@ class manager
|
|||
* @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, \phpbb\passwords\helper $helper, $defaults)
|
||||
public function __construct(\phpbb\config\config $config, $hashing_algorithms, helper $helper, $defaults)
|
||||
{
|
||||
$this->config = $config;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue