1 | <?php |
||
21 | final class ModifyCreateDependingRegistrationsEvent |
||
22 | { |
||
23 | /** |
||
24 | * @var Registration |
||
25 | */ |
||
26 | private $registration; |
||
27 | |||
28 | /** |
||
29 | * @var bool |
||
30 | */ |
||
31 | private $createDependingRegistrations; |
||
32 | |||
33 | /** |
||
34 | * @var EventController |
||
35 | */ |
||
36 | private $eventController; |
||
37 | |||
38 | public function __construct( |
||
47 | |||
48 | /** |
||
49 | * @return Registration |
||
50 | */ |
||
51 | public function getRegistration(): Registration |
||
55 | |||
56 | /** |
||
57 | * @return EventController |
||
58 | */ |
||
59 | public function getEventController(): EventController |
||
63 | |||
64 | /** |
||
65 | * @return bool |
||
66 | */ |
||
67 | public function getCreateDependingRegistrations(): bool |
||
71 | |||
72 | /** |
||
73 | * @param bool $createDependingRegistrations |
||
74 | */ |
||
75 | public function setCreateDependingRegistrations(bool $createDependingRegistrations): void |
||
79 | } |
||
80 |