f89ed85a83
fixes #365, #367
14 lines
192 B
PHP
14 lines
192 B
PHP
<?php
|
|
|
|
namespace PicoFeed\Scraper;
|
|
|
|
interface ParserInterface
|
|
{
|
|
/**
|
|
* Execute the parser and return the contents
|
|
*
|
|
* @return string
|
|
*/
|
|
public function execute();
|
|
}
|