wip: refactor

This commit is contained in:
Björn Fromme
2026-03-16 11:59:09 +01:00
parent e75276ed88
commit 86e4866d6a
21 changed files with 395 additions and 110 deletions
+7
View File
@@ -47,4 +47,11 @@ interface BookingDtoInterface
* @return ParticipantDto|null The participant DTO or null if not found
*/
public function getParticipant(int $index): ?ParticipantDto;
/**
* Gets all selected rooms for the booking.
*
* @return array<int, RoomSelectionDto> Array of selected room DTOs (may be empty for edit DTOs)
*/
public function getSelectedRooms(): array;
}