예제 #1
0
파일: Team.php 프로젝트: allejo/bzion
 /**
  * {@inheritdoc}
  */
 public function delete()
 {
     parent::delete();
     // Remove all the members of a deleted team
     $this->updateProperty($this->members, 'members', 0);
     $this->db->execute("UPDATE `players` SET `team` = NULL WHERE `team` = ?", $this->id);
 }