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

13 lines
236 B
PHP
Raw Normal View History

2023-08-02 10:13:16 +00:00
<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Core\SubscriptionChange;
2023-08-03 22:23:59 +00:00
class SubscriptionChangeSaver
2023-08-02 10:13:16 +00:00
{
2023-08-03 22:23:59 +00:00
public function saveSubscriptionChanges(array $urlsSubscribed, array $urlsUnsubscribed, string $userId): void
{
}
2023-08-02 10:13:16 +00:00
}