Esempio n. 1
0
 /**
  * Remove goals
  *
  * @param E100\CoreBundle\Entity\Goal $goals
  */
 public function removeGoal(\E100\CoreBundle\Entity\Goal $goals)
 {
     $this->goals->removeElement($goals);
 }
Esempio n. 2
0
 /**
  * Goal Remover
  *
  * @param Goal $goal
  *
  * @return $this
  */
 public function removeGoal(Goal $goal)
 {
     $this->goals->removeElement($goal);
     return $this;
 }