/** * Wrapper to fetch feeds * * @param String $url * * @return \Feedtcher\Feed */ public static function fetch($url) { $feedtech = new Feedtcher($url); return $feedtech->doFetch(); }
/** * @expectedException Exception */ public function testNotValidUrl() { $url = 'http://zaranga.lol.fail'; $feed = \Feedtcher\Feedtcher::fetch($url); }