Programming Language PHP
Namespace Oro\Bundle\CaseBundle\Entity
Class CaseComment
Method/Function setCase
Total Examples 1
1 code examples of PHP Oro\Bundle\CaseBundle\Entity\CaseComment::setCase extracted from open source projects
public function addComment(CaseComment $comment): self
{
$this->comments->add($comment);
$comment->setCase($this);
return $this;
}