12 lines
251 B
PHP
12 lines
251 B
PHP
|
|
<?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
|
||
|
|
) {}
|
||
|
|
}
|