示例#1
0
文件: Player.php 项目: uhtoff/WotR
 /**
  * Set game
  *
  * @param \Meldon\WotRBundle\Entity\Game $game
  * @return Player
  */
 public function setGame(\Meldon\WotRBundle\Entity\Game $game = null)
 {
     $this->game = $game;
     $game->addPlayer($this);
     return $this;
 }