2015-04-28 18:08:42 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PicoFeed\Scraper;
|
|
|
|
|
|
|
|
interface ParserInterface
|
|
|
|
{
|
|
|
|
/**
|
2015-10-20 04:49:30 +02:00
|
|
|
* Execute the parser and return the contents.
|
2015-04-28 18:08:42 +02:00
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function execute();
|
2016-12-26 23:32:18 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Find link for next page of the article.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function findNextLink();
|
2015-04-28 18:08:42 +02:00
|
|
|
}
|