X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/8cb18100cbd00c2a8bf77302b4393d6675f7be44..b95d1cdbc4fe25e3f0df3b94e990f6af7b330c63:/lib/db_implementation.php diff --git a/lib/db_implementation.php b/lib/db_implementation.php index c35754f..4304328 100644 --- a/lib/db_implementation.php +++ b/lib/db_implementation.php @@ -2,13 +2,13 @@ /* vim: set ts=4 tw=0 sw=4 noet: */ abstract class DBImpl { - private function __clone() {} + private function __clone() {} - abstract protected static function getInstance(); - abstract protected function getQMails($offset = -1, $rowsPerPage = -1, $recipient = 'all'); - abstract protected function getMarked($recipient = 'all'); - abstract protected function numRows(); - abstract protected function getMail($id); - abstract protected function setCharset($charset = 'utf8'); - abstract protected function update($sql); + abstract protected static function getInstance(); + abstract protected function getQMails($offset = -1, $rowsPerPage = -1, $recipient = 'all'); + abstract protected function getMarked($recipient = 'all'); + abstract protected function numRows(); + abstract protected function getMail($id); + abstract protected function setCharset($charset = 'utf8'); + abstract protected function update($sql); }