示例#1
0
文件: TankForm.php 项目: ninetor/23
 /**
  * @return bool
  */
 public function addParticipant()
 {
     if ($this->validate()) {
         $participant = new Participant();
         $participant->setAttributes($this->getAttributes());
         if ($participant->save()) {
             return $participant->id;
         }
     }
     return $this->getErrors();
 }