/** * @param TeamGame $game * @return Team */ public function removeGame(TeamGame $game) { $this->games->removeElement($game); return $this; }
/** * @param TeamGame $teamGame * @return Game */ public function removeTeamGames(TeamGame $teamGame) { $this->teamGames->removeElement($teamGame); return $this; }