12 lines
281 B
PHP
12 lines
281 B
PHP
<?php
|
|
|
|
/**
|
|
* Dispatched when a reservation is refused (at least one of its timetable items
|
|
* was rejected), so the whole reservation can no longer be confirmed.
|
|
*/
|
|
class RsvReservationRefusedEvent {
|
|
public function __construct(
|
|
public int $reservation_id
|
|
) {}
|
|
}
|