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

18 lines
366 B
PHP
Raw Normal View History

2023-08-02 12:13:16 +02:00
<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Core\SubscriptionChange;
2023-08-04 00:23:59 +02:00
class SubscriptionChangeRequestParser
2023-08-02 12:13:16 +02:00
{
2024-09-19 08:27:04 +02:00
public function __construct(
private SubscriptionChangesReader $subscriptionChangeReader
) {}
2023-08-22 19:41:17 +02:00
2023-08-02 12:13:16 +02:00
/**
* @return SubscriptionChange[]
*/
2023-12-23 16:25:20 +00:00
public function createSubscriptionChangeList(array $urlsSubscribed, array $urlsUnsubscribed) {}
2023-08-02 12:13:16 +02:00
}