Files
Kanboard-Prod/vendor/miniflux/picofeed/lib/PicoFeed/Scraper/ParserInterface.php
2017-10-25 16:22:10 -07:00

21 lines
322 B
PHP

<?php
namespace PicoFeed\Scraper;
interface ParserInterface
{
/**
* Execute the parser and return the contents.
*
* @return string
*/
public function execute();
/**
* Find link for next page of the article.
*
* @return string
*/
public function findNextLink();
}