2023-08-24 12:48:10 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace OCA\GPodderSync\Db\SubscriptionChange;
|
|
|
|
|
|
|
|
class SubscriptionChangeWriter
|
|
|
|
{
|
2023-12-23 17:25:20 +01:00
|
|
|
public function __construct(private SubscriptionChangeMapper $subscriptionChangeMapper) {}
|
2023-08-24 12:48:10 +02:00
|
|
|
|
2023-12-23 17:25:20 +01:00
|
|
|
public function purge(): void {}
|
2023-08-24 12:48:10 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return SubscriptionChangeEntity
|
|
|
|
*/
|
2023-12-23 17:25:20 +01:00
|
|
|
public function create(SubscriptionChangeEntity $subscriptionChangeEntity) {}
|
2023-08-24 12:48:10 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return SubscriptionChangeEntity
|
|
|
|
*/
|
2023-12-23 17:25:20 +01:00
|
|
|
public function update(SubscriptionChangeEntity $subscriptionChangeEntity) {}
|
2023-08-24 12:48:10 +02:00
|
|
|
}
|