示例#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;
 }