delete deprecated method

This commit is contained in:
ghost 2023-08-17 10:09:31 +03:00
parent 2b49ff5f6a
commit e3138faeac

View File

@ -640,17 +640,6 @@ class MySQL {
return $query->rowCount();
}
public function deleteHostPageDomsByTimeAdded(int $timeOffset) {
$this->_debug->query->delete->total++;
$query = $this->_db->prepare('DELETE FROM `hostPageDom` WHERE `timeAdded` < ' . (int) $timeOffset);
$query->execute();
return $query->rowCount();
}
public function truncateHostPageDom() {
$query = $this->_db->query('TRUNCATE `hostPageDom`');