Add test for MyInvitationsController.php

This commit is contained in:
2025-09-30 15:45:26 +02:00
parent e6a799abc4
commit f93c7e014f
5 changed files with 301 additions and 4 deletions

View File

@@ -20,4 +20,9 @@ use Doctrine\Persistence\ObjectRepository;
interface DocGeneratorTemplateRepositoryInterface extends ObjectRepository
{
public function countByEntity(string $entity): int;
/**
* @return array|DocGeneratorTemplate[]
*/
public function findByEntity(string $entity, ?int $start = 0, ?int $limit = 50): array;
}