Example #1
0
 /**
  * Add an article to the feed.
  *
  * @param mixed $entry
  */
 public function addArticle($entry)
 {
     $article = Article::make($entry);
     $this->articles->push($article);
     return $article;
 }