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