16 lines
342 B
PHP
16 lines
342 B
PHP
<?php
|
|
|
|
namespace KupShop\FeedGeneratorBundle\Feed;
|
|
|
|
use KupShop\FeedsBundle\Feed\IFeed;
|
|
|
|
interface IExternalFeed extends IFeed, IConfigurableFeed
|
|
{
|
|
/**
|
|
* @param array $feedRow Feed from database
|
|
*
|
|
* @return array Description parsed from XML schema
|
|
*/
|
|
public function fetchDataDescription(array $feedRow): array;
|
|
}
|