1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-29 10:50:25 +02:00

Implemented missing e_db_mysql::resetTableList() method

e_db::resetTableList() is now an interface method (undocumented)
This commit is contained in:
Nick Liu
2019-12-23 17:12:47 +01:00
parent a4ad81dd4c
commit a93165efa5
2 changed files with 12 additions and 0 deletions

View File

@@ -352,6 +352,11 @@
function backup($table='*', $file='', $options=null); function backup($table='*', $file='', $options=null);
/**
* TODO: Document this method
*/
public function resetTableList();
/** /**
* Return a filtered list of DB tables. * Return a filtered list of DB tables.
* *

View File

@@ -2607,6 +2607,13 @@ class e_db_mysql implements e_db
$this->mySQLtableList = array(); $this->mySQLtableList = array();
$this->mySQLtableListLanguage = array(); $this->mySQLtableListLanguage = array();
} }
/**
* @inheritDoc
*/
public function resetTableList()
{
return $this->db_ResetTableList();
}
/** /**
* Legacy Alias of tables * Legacy Alias of tables