diff options
Diffstat (limited to 'vendor/miniflux/picofeed/lib/PicoFeed/Scraper/ParserInterface.php')
-rw-r--r-- | vendor/miniflux/picofeed/lib/PicoFeed/Scraper/ParserInterface.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/miniflux/picofeed/lib/PicoFeed/Scraper/ParserInterface.php b/vendor/miniflux/picofeed/lib/PicoFeed/Scraper/ParserInterface.php new file mode 100644 index 00000000..3ded4b1c --- /dev/null +++ b/vendor/miniflux/picofeed/lib/PicoFeed/Scraper/ParserInterface.php @@ -0,0 +1,20 @@ +<?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(); +} |