Remove useless constructors

This commit is contained in:
Tautvidas Sipavičius
2016-06-29 20:42:03 +03:00
parent c62cd6c023
commit 168540d6d2
13 changed files with 9 additions and 57 deletions

View File

@ -10,10 +10,6 @@ class SendingQueue extends Model {
const STATUS_SCHEDULED = 'scheduled';
const STATUS_PAUSED = 'paused';
function __construct() {
parent::__construct();
}
function pause() {
if($this->count_processed === $this->count_total) {
return false;
@ -39,4 +35,4 @@ class SendingQueue extends Model {
$this->save();
return ($this->getErrors() === false && $this->id() > 0);
}
}
}