ParserInterface.php 322 B

1234567891011121314151617181920
  1. <?php
  2. namespace PicoFeed\Scraper;
  3. interface ParserInterface
  4. {
  5. /**
  6. * Execute the parser and return the contents.
  7. *
  8. * @return string
  9. */
  10. public function execute();
  11. /**
  12. * Find link for next page of the article.
  13. *
  14. * @return string
  15. */
  16. public function findNextLink();
  17. }