get(); $articlesitems = []; //Looping through the articles and scraping and while scraping it creates a new instance of the scraper. foreach ($articles as $article) { $link = $article['link']; $articlesitems[] = (new ThePressScraper)->extract($link); } return $articlesitems; } }