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 SubscriptionChangesReader
|
2023-08-02 12:13:16 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @return SubscriptionChange[]
|
|
|
|
*/
|
2023-12-23 17:25:20 +01:00
|
|
|
public static function mapToSubscriptionsChanges(array $urls, bool $subscribed) {}
|
2023-08-02 12:13:16 +02:00
|
|
|
}
|