mirror of
https://git.crystalyx.net/Xefir/repod.git
synced 2025-01-09 07:42:41 +01:00
18 lines
366 B
PHP
18 lines
366 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\GPodderSync\Core\SubscriptionChange;
|
|
|
|
class SubscriptionChangeRequestParser
|
|
{
|
|
public function __construct(
|
|
private SubscriptionChangesReader $subscriptionChangeReader
|
|
) {}
|
|
|
|
/**
|
|
* @return SubscriptionChange[]
|
|
*/
|
|
public function createSubscriptionChangeList(array $urlsSubscribed, array $urlsUnsubscribed) {}
|
|
}
|