Files
kupshop/bundles/KupShop/FeedGeneratorBundle/Feed/IExternalFeed.php
2025-08-02 16:30:27 +02:00

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;
}