1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/14733] Use new interface to preserve backwards compatibility

PHPBB3-14733
This commit is contained in:
Marc Alexander
2016-09-25 18:00:49 +02:00
parent 297376ee94
commit d15269950d
3 changed files with 79 additions and 10 deletions

View File

@@ -13,7 +13,7 @@
namespace phpbb\passwords\driver;
abstract class base implements driver_interface
abstract class base implements rehashable_driver_interface
{
/** @var \phpbb\config\config */
protected $config;
@@ -21,7 +21,7 @@ abstract class base implements driver_interface
/** @var \phpbb\passwords\driver\helper */
protected $helper;
/** @var driver name */
/** @var string Driver name */
protected $name;
/**