mirror of
https://git.crystalyx.net/Xefir/repod.git
synced 2025-01-05 21:41:54 +01:00
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;
|
|
}
|