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

[ticket/12715] Cleanup comments in \phpbb\passwords\*

PHPBB3-12715
This commit is contained in:
Tristan Darricau
2014-06-15 14:46:18 +02:00
parent 52e8359497
commit 5dfb1cc66a
17 changed files with 63 additions and 63 deletions

View File

@@ -15,10 +15,10 @@ namespace phpbb\passwords\driver;
abstract class base implements driver_interface
{
/** @var phpbb\config\config */
/** @var \phpbb\config\config */
protected $config;
/** @var phpbb\passwords\driver\helper */
/** @var \phpbb\passwords\driver\helper */
protected $helper;
/** @var driver name */
@@ -37,7 +37,7 @@ abstract class base implements driver_interface
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function is_supported()
{
@@ -45,7 +45,7 @@ abstract class base implements driver_interface
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function is_legacy()
{
@@ -53,7 +53,7 @@ abstract class base implements driver_interface
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function get_settings_only($hash, $full = false)
{