miniflux-legacy/vendor/fguillot/picofeed/lib/PicoFeed/Scraper/ParserInterface.php

14 lines
192 B
PHP
Raw Normal View History

2015-04-28 18:08:42 +02:00
<?php
namespace PicoFeed\Scraper;
interface ParserInterface
{
/**
* Execute the parser and return the contents
*
* @return string
*/
public function execute();
}