Ojs\JournalBundle\Entity\Article::removeArticleAuthor PHP Method

removeArticleAuthor() public method

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