예제 #1
0
파일: Post.php 프로젝트: dextar1/t3extblog
 /**
  * Adds a Comment
  *
  * @param \TYPO3\T3extblog\Domain\Model\Comment $comment
  * @return void
  */
 public function addComment(Comment $comment)
 {
     $this->initComments();
     $comment->setPostId($this->getLocalizedUid());
     $this->comments->attach($comment);
     $this->getCommentRepository()->add($comment);
 }