1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[feature/passwords] Modify passwords files for namespacing changes

PHPBB3-11610
This commit is contained in:
Marc Alexander
2013-09-27 11:16:47 +02:00
parent e41c9ef6cd
commit 3f63b9b470
10 changed files with 44 additions and 26 deletions

View File

@@ -7,6 +7,8 @@
*
*/
namespace phpbb\passwords;
/**
* @ignore
*/
@@ -18,7 +20,7 @@ if (!defined('IN_PHPBB'))
/**
* @package passwords
*/
class phpbb_passwords_helper
class helper
{
/**
* @var phpbb_passwords_manager
@@ -30,7 +32,7 @@ class phpbb_passwords_helper
*
* @param phpbb_passwords_manager $manager Crypto manager object
*/
public function set_manager(phpbb_passwords_manager $manager)
public function set_manager(\phpbb\passwords\manager $manager)
{
if ($this->manager === null)
{