repod/stubs/OCA/GPodderSync/Db/SubscriptionChange/SubscriptionChangeWriter.php
Michel Roux 25949e98c9
All checks were successful
repod / xml (push) Successful in 26s
repod / php (push) Successful in 45s
repod / nodejs (push) Successful in 1m8s
repod / release (push) Has been skipped
chore: ⬆️ update locks
2024-09-19 08:27:04 +02:00

25 lines
504 B
PHP

<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Db\SubscriptionChange;
class SubscriptionChangeWriter
{
public function __construct(
private SubscriptionChangeMapper $subscriptionChangeMapper
) {}
public function purge(): void {}
/**
* @return SubscriptionChangeEntity
*/
public function create(SubscriptionChangeEntity $subscriptionChangeEntity) {}
/**
* @return SubscriptionChangeEntity
*/
public function update(SubscriptionChangeEntity $subscriptionChangeEntity) {}
}