/** * Runs the cli * * @return int */ public function run() { foreach ($this->manager->updateAllFeeds() as $id) { $this->printLine("Updated feed: {$id}"); } return 0; }
/** * GET /feed/update */ public function updateAllFeeds() { $this->app->render(200, ['response' => $this->manager->updateAllFeeds()]); }