Esempio n. 1
0
 /**
  * Adds a comment to this report.
  *
  * @param ReportComment $comment A comment
  *
  * @return void
  */
 public function addComment(ReportComment $comment)
 {
     $comment->setReport($this);
     $this->comments->attach($comment);
 }