14 lines
272 B
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;
|
||
|
}
|