Files

12 lines
251 B
PHP
Raw Permalink Normal View History

2026-06-11 19:03:29 +02:00
<?php
/**
* Dispatched when every timetable item of a reservation is confirmed, i.e. the
* whole reservation has been accepted.
*/
class RsvReservationConfirmedEvent {
public function __construct(
public int $reservation_id
) {}
}