. * */ namespace OCA\News\Backgroundjob; use \OCA\News\DependencyInjection\DIContainer; class Task { static public function run() { $container = new DIContainer(); $container['FeedBl']->updateAll(); $container['ItemBl']->autoPurgeOld(); } }