예제 #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();
 }