1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +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\driver;
/**
* @ignore
*/
@@ -18,12 +20,12 @@ if (!defined('IN_PHPBB'))
/**
* @package passwords
*/
abstract class phpbb_passwords_driver_base implements phpbb_passwords_driver_interface
abstract class base implements \phpbb\passwords\driver\driver_interface
{
/** @var phpbb_config */
/** @var phpbb\config\config */
protected $config;
/** @var phpbb_passwords_driver_helper */
/** @var phpbb\passwords\driver\helper */
protected $helper;
/** @var driver name */
@@ -34,7 +36,7 @@ abstract class phpbb_passwords_driver_base implements phpbb_passwords_driver_int
*
* @return string Hash prefix
*/
public function __construct(phpbb_config $config, phpbb_passwords_driver_helper $helper)
public function __construct(\phpbb\config\config $config, \phpbb\passwords\driver\helper $helper)
{
$this->config = $config;
$this->helper = $helper;