blob: 3a022f7646f957db609768c794e5b96b5d4224b6 [file] [log] [blame]
<?php
namespace Synergy\Interfaces;
/**
*
* @author vriha
*/
interface ReviewImporter {
/**
* Parses data from given URL and returns array of ReviewPage instances from the URL
* @param String $url URL to fetch data from
* @return \Synergy\Model\Review\ReviewPage Description
*/
public function parseFromUrl($url);
}