Ejemplo n.º 1
0
Archivo: Article.php Proyecto: ojs/ojs
 /**
  * Remove articleAuthor
  *
  * @param ArticleAuthor $articleAuthor
  * @return $this
  */
 public function removeArticleAuthor(ArticleAuthor $articleAuthor)
 {
     if ($this->articleAuthors->contains($articleAuthor)) {
         $this->articleAuthors->removeElement($articleAuthor);
     }
     return $this;
 }
Ejemplo n.º 2
0
 /**
  * Remove articleAuthors
  *
  * @param ArticleAuthor $articleAuthors
  */
 public function removeArticleAuthor(ArticleAuthor $articleAuthors)
 {
     $this->articleAuthors->removeElement($articleAuthors);
 }