13 lines
193 B
PHP
13 lines
193 B
PHP
<?php
|
|
|
|
namespace PicoFeed\Scraper;
|
|
|
|
interface ParserInterface
|
|
{
|
|
/**
|
|
* Execute the parser and return the contents.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function execute();
|
|
}
|