miniflux-legacy/vendor/fguillot/picofeed/lib/PicoFeed/Scraper/ParserInterface.php
2015-10-19 22:49:30 -04:00

14 lines
193 B
PHP

<?php
namespace PicoFeed\Scraper;
interface ParserInterface
{
/**
* Execute the parser and return the contents.
*
* @return string
*/
public function execute();
}