RePod-Nextcloud-App/stubs/OCA/GPodderSync/Core/SubscriptionChange/SubscriptionChangeRequestPa...

14 lines
276 B
PHP

<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Core\SubscriptionChange;
interface SubscriptionChangeRequestParser
{
/**
* @return SubscriptionChange[]
*/
public function createSubscriptionChangeList(array $urlsSubscribed, array $urlsUnsubscribed): array;
}