示例#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);
 }