예제 #1
0
파일: Nation.php 프로젝트: uhtoff/WotR
 /**
  * Set game
  *
  * @param \Meldon\WotRBundle\Entity\Game $game
  * @return Nation
  */
 public function setGame(\Meldon\WotRBundle\Entity\Game $game = null)
 {
     $this->game = $game;
     $game->addNation($this);
     return $this;
 }