repod/stubs/OCA/GPodderSync/Db/EpisodeAction/EpisodeActionMapper.php
Michel Roux c8f2e33b57
All checks were successful
repod / nextcloud (push) Successful in 1m8s
repod / xml (push) Successful in 27s
repod / nodejs (push) Successful in 1m52s
Fix psalm
2023-12-23 16:50:52 +00:00

38 lines
741 B
PHP

<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Db\EpisodeAction;
use OCP\AppFramework\Db\QBMapper;
use OCP\DB\Exception;
use OCP\IDBConnection;
/**
* @template-extends QBMapper<EpisodeActionEntity>
*/
class EpisodeActionMapper extends QBMapper
{
protected $tableName;
protected $entityClass;
protected $db;
public function __construct(IDBConnection $db) {}
/**
* @return EpisodeActionEntity[]
* @throws Exception
*/
public function findAll(int $sinceTimestamp, string $userId) {}
/**
* @return ?EpisodeActionEntity
*/
public function findByEpisodeUrl(string $episodeIdentifier, string $userId) {}
/**
* @return ?EpisodeActionEntity
*/
public function findByGuid(string $guid, string $userId) {}
}