mirror of
https://git.crystalyx.net/Xefir/repod.git
synced 2024-12-29 02:03:41 +01:00
31 lines
511 B
PHP
31 lines
511 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)
|
|
{
|
|
}
|
|
}
|