/** * @return FastFeed */ public static function create() { $fastFeed = new FastFeed(HttpAdapterFactory::create('guzzle'), new Logger(false)); $fastFeed->pushParser(new RSSParser()); $fastFeed->pushParser(new AtomParser()); return $fastFeed; }