Ejemplo n.º 1
0
Archivo: Article.php Proyecto: ojs/ojs
 /**
  * Add articleAuthor
  *
  * @param  ArticleAuthor $articleAuthor
  * @return $this
  */
 public function addArticleAuthor(ArticleAuthor $articleAuthor)
 {
     if (!$this->articleAuthors->contains($articleAuthor)) {
         $this->articleAuthors->add($articleAuthor);
         $articleAuthor->setArticle($this);
     }
     return $this;
 }