Add a test adapter and add deletion of sendeds scheduled sms

This commit is contained in:
osaajani 2019-12-20 18:31:19 +01:00
parent 99cdf6516a
commit 9eb701ba98
8 changed files with 134 additions and 12 deletions

View file

@ -121,6 +121,17 @@ namespace models;
{
return $this->_delete($this->get_table_name(), ['id_user' => $id_user, 'id' => $id]);
}
/**
* Delete a entry by his id
* @param int $id : Entry id
* @return int : Number of removed rows
*/
public function delete(int $id)
{
return $this->_delete($this->get_table_name(), ['id' => $id]);
}
/**