예제 #1
0
파일: Series.php 프로젝트: OKTOTV/FLUX2
 /**
  * Add posts
  *
  * @param \AppBundle\Entity\Post $posts
  * @return Series
  */
 public function addPost(\AppBundle\Entity\Post $posts)
 {
     $this->posts[] = $posts;
     $posts->setSeries($this);
     return $this;
 }