mirror of
https://git.crystalyx.net/Xefir/repod.git
synced 2025-01-09 07:42:41 +01:00
14 lines
248 B
PHP
14 lines
248 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\GPodderSync\Core\SubscriptionChange;
|
|
|
|
class SubscriptionChangesReader
|
|
{
|
|
/**
|
|
* @return SubscriptionChange[]
|
|
*/
|
|
public static function mapToSubscriptionsChanges(array $urls, bool $subscribed) {}
|
|
}
|