1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-23 08:43:02 +02:00

[feature/passwords] A few more corrections in methods due to namespacing

PHPBB3-11610
This commit is contained in:
Marc Alexander
2013-09-28 12:41:02 +02:00
parent 5bc5e4716c
commit de087d537e
2 changed files with 7 additions and 7 deletions

View File

@@ -23,14 +23,14 @@ if (!defined('IN_PHPBB'))
class helper
{
/**
* @var phpbb_passwords_manager
* @var phpbb\passwords\manager
*/
protected $manager;
/**
* Set the passwords manager instance
*
* @param phpbb_passwords_manager $manager Crypto manager object
* @param phpbb\passwords\manager $manager Crypto manager object
*/
public function set_manager(\phpbb\passwords\manager $manager)
{