1 | <?php |
||
19 | final class ModifyCreateDependingRegistrationsEvent |
||
20 | { |
||
21 | /** |
||
22 | * @var Registration |
||
23 | */ |
||
24 | private $registration; |
||
25 | |||
26 | /** |
||
27 | * @var bool |
||
28 | */ |
||
29 | private $createDependingRegistrations; |
||
30 | |||
31 | /** |
||
32 | * @var EventController |
||
33 | */ |
||
34 | private $eventController; |
||
35 | |||
36 | public function __construct( |
||
45 | |||
46 | /** |
||
47 | * @return Registration |
||
48 | */ |
||
49 | public function getRegistration(): Registration |
||
53 | |||
54 | /** |
||
55 | * @return EventController |
||
56 | */ |
||
57 | public function getEventController(): EventController |
||
61 | |||
62 | /** |
||
63 | * @return bool |
||
64 | */ |
||
65 | public function getCreateDependingRegistrations(): bool |
||
69 | |||
70 | /** |
||
71 | * @param bool $createDependingRegistrations |
||
72 | */ |
||
73 | public function setCreateDependingRegistrations(bool $createDependingRegistrations): void |
||
77 | } |
||
78 |