Exemplo n.º 1
0
 /**
  * This is invoked after the record is deleted.
  */
 public function afterDelete()
 {
     parent::afterDelete();
     Question::decrementAnswers($this->question_id);
     Vote::removeRelation($this);
 }
Exemplo n.º 2
0
 /**
  * This is invoked after the record is deleted.
  */
 public function afterDelete()
 {
     parent::afterDelete();
     Tag::updateFrequency($this->tags, '');
     Vote::removeRelation($this);
     Answer::removeRelation($this->id);
 }