Example #1
0
 /**
  * @param Models\Comment $comment
  * @param Models\Image   $image
  * @return Models\ImageCommentLink
  */
 public function addCommentToImage(Models\Comment $comment, Models\Image $image)
 {
     $comment->save();
     $image->save();
     return $this->addCommentToFile($comment, $image);
 }