예제 #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;
 }