repod/stubs/OCA/GPodderSync/Core/SubscriptionChange/SubscriptionChangeRequestParser.php

14 lines
272 B
PHP

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