home/skymarketplace/public_html/models/Notification.php 0000644 00000000576 15003700172 0017442 0 ustar 00 db = Database::getInstance();
}
public function deleteNotification($id)
{
$stmt = $this->db->prepare("DELETE FROM notifications WHERE id = ?");
return $stmt->execute([$id]);
}
}