| Total Complexity | 2 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class RegistrantRepository extends EntityRepository |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Returns the upcoming meeting registrations for the given user. |
||
| 19 | * |
||
| 20 | * @param User $user |
||
| 21 | * |
||
| 22 | * @return array|Registrant[] |
||
| 23 | */ |
||
| 24 | public function meetingsComingSoonRegistrationsForUser($user) |
||
| 32 | } |
||
| 33 | |||
| 34 | public function findByMeetingPaginated(Meeting $meeting, int $from, int $limit, string $column, string $direction) |
||
| 50 |