1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[feature/passwords] Get rid of set_name/get_name methods for passwords drivers

PHPBB3-11610
This commit is contained in:
Marc Alexander
2014-02-02 14:09:09 +01:00
parent 85f1e8afa5
commit 292961a277
10 changed files with 8 additions and 75 deletions

View File

@@ -21,11 +21,6 @@ class phpbb_passwords_helper_test extends PHPUnit_Framework_TestCase
'passwords.driver.salted_md5' => new \phpbb\passwords\driver\salted_md5($config, $this->driver_helper),
'passwords.driver.phpass' => new \phpbb\passwords\driver\phpass($config, $this->driver_helper),
);
foreach ($this->passwords_drivers as $key => $driver)
{
$driver->set_name($key);
}
}
public function data_helper_encode64()