count() >= 50) { return true; } else { return false; } } /** * Returns parsed rss feed, or false if the given URL cannot be downloaded * * @param $podcastUrl String containing the podcast feed URL * * @return mixed */ public static function getPodcastFeed($podcastUrl) { try { return Feed::loadRss($podcastUrl); } catch (FeedException $e) { return false; } } public static function getPodcastEpisodeFeed($podcast) { } }