예제 #1
0
파일: User.php 프로젝트: rkempter/e100
 /**
  * Remove goals
  *
  * @param E100\CoreBundle\Entity\Goal $goals
  */
 public function removeGoal(\E100\CoreBundle\Entity\Goal $goals)
 {
     $this->goals->removeElement($goals);
 }
예제 #2
0
파일: Game.php 프로젝트: bricebuffa/Babitch
 /**
  * Goal Remover
  *
  * @param Goal $goal
  *
  * @return $this
  */
 public function removeGoal(Goal $goal)
 {
     $this->goals->removeElement($goal);
     return $this;
 }