Files

16 lines
514 B
PHP
Raw Permalink Normal View History

2026-06-11 19:03:29 +02:00
<?php
/**
* Dispatched when a single timetable reservation item requires maintainer
* confirmation. Carries everything the email module needs so it never has to
* reach back into the reservation services.
*/
class RsvTimetableReservationPendingEvent {
public function __construct(
public int $reservation_id,
public RsvTimetableReservation $reservation,
2026-06-17 11:15:09 +02:00
public ?string $code,
2026-06-11 19:03:29 +02:00
public string $maintainer_email
) {}
}