예제 #1
0
파일: Game.php 프로젝트: Raxer971/challenge
 /**
  * Set image
  *
  * @param \challenge\PaymentBundle\Entity\Image $image
  *
  * @return Game
  */
 public function setImage(\challenge\PaymentBundle\Entity\Image $image = null)
 {
     $this->image = $image;
     $image->setGame($this);
     return $this;
 }