예제 #1
0
파일: Gallery.php 프로젝트: stereomon/karo
 /**
  * @param GalleryImage $image
  * @return $this
  */
 public function addImage(GalleryImage $image)
 {
     $this->addYearIfNotSet($image);
     $image->setGallery($this);
     $this->images->add($image);
     return $this;
 }