Files
archived-doctrine-website/lib/Model/Entity/EventParticipantRepository.php
2023-08-27 19:27:17 +02:00

21 lines
388 B
PHP

<?php
declare(strict_types=1);
namespace Doctrine\Website\Model\Entity;
/** @template T of EventParticipant */
final class EventParticipantRepository
{
public function findOneByEmail(string $email): EventParticipant|null
{
return null;
}
/** @return EventParticipant[] */
public function findByEventId(int $eventId): array
{
return [];
}
}