#!/usr/bin/env php filter(function($article) { return $article->wasRecentlyCreated; }); echo "Found " . $articles->count() . " articles (" . $newArticles->count() . " new)\n"; $newArticles->each(function($article) { echo "New article: " . $article->url . "\n"; // $article->publish(); }); echo "\n";