aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/passwords/driver/base.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/passwords/driver/base.php')
-rw-r--r--phpBB/phpbb/passwords/driver/base.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/phpBB/phpbb/passwords/driver/base.php b/phpBB/phpbb/passwords/driver/base.php
index 91c07a813b..8256fd721c 100644
--- a/phpBB/phpbb/passwords/driver/base.php
+++ b/phpBB/phpbb/passwords/driver/base.php
@@ -42,22 +42,4 @@ abstract class base implements driver_interface
{
return true;
}
-
- /**
- * @inheritdoc
- */
- public function get_name()
- {
- return $this->name;
- }
-
- /**
- * Set driver name
- *
- * @param string $name Driver name
- */
- public function set_name($name)
- {
- $this->name = $name;
- }
}