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