11 lines
231 B
PHP
11 lines
231 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\NextPod\Core\SubscriptionChange;
|
|
|
|
interface SubscriptionChangeSaver
|
|
{
|
|
public function saveSubscriptionChanges(array $urlsSubscribed, array $urlsUnsubscribed, string $userId): void;
|
|
}
|