diff options
Diffstat (limited to 'phpBB/phpbb/passwords/driver/base.php')
| -rw-r--r-- | phpBB/phpbb/passwords/driver/base.php | 12 | 
1 files changed, 10 insertions, 2 deletions
| diff --git a/phpBB/phpbb/passwords/driver/base.php b/phpBB/phpbb/passwords/driver/base.php index fd07a61bf4..0997b5b700 100644 --- a/phpBB/phpbb/passwords/driver/base.php +++ b/phpBB/phpbb/passwords/driver/base.php @@ -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;  	/** @@ -53,6 +53,14 @@ abstract class base implements driver_interface  	}  	/** +	 * {@inheritdoc} +	 */ +	public function needs_rehash($hash) +	{ +		return false; +	} + +	/**  	* {@inheritdoc}  	*/  	public function get_settings_only($hash, $full = false) | 
