Ojs\JournalBundle\Entity\Article::removeArticleAuthor PHP Метод

removeArticleAuthor() публичный Метод

Remove articleAuthor
public removeArticleAuthor ( ArticleAuthor $articleAuthor )
$articleAuthor ArticleAuthor
    public function removeArticleAuthor(ArticleAuthor $articleAuthor)
    {
        if ($this->articleAuthors->contains($articleAuthor)) {
            $this->articleAuthors->removeElement($articleAuthor);
        }
        return $this;
    }