14 lines
253 B
PHP
14 lines
253 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\NextPod\Core\SubscriptionChange;
|
|
|
|
interface SubscriptionChangesReader
|
|
{
|
|
/**
|
|
* @return SubscriptionChange[]
|
|
*/
|
|
public static function mapToSubscriptionsChanges(array $urls, bool $subscribed): array;
|
|
}
|