repod/stubs/OCA/GPodderSync/Db/SubscriptionChange/SubscriptionChangeRepository.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

33 lines
675 B
PHP

<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Db\SubscriptionChange;
class SubscriptionChangeRepository
{
public function __construct(
private SubscriptionChangeMapper $subscriptionChangeMapper
) {}
/**
* @return SubscriptionChangeEntity[]
*/
public function findAll() {}
/**
* @return ?SubscriptionChangeEntity
*/
public function findByUrl(string $episode, string $userId) {}
/**
* @return SubscriptionChangeEntity[]
*/
public function findAllSubscribed(\DateTime $sinceTimestamp, string $userId) {}
/**
* @return SubscriptionChangeEntity[]
*/
public function findAllUnSubscribed(\DateTime $sinceTimestamp, string $userId) {}
}