1 | <?php |
||
20 | final class AfterRegistrationConfirmedEvent |
||
21 | { |
||
22 | /** |
||
23 | * @var Registration |
||
24 | */ |
||
25 | private $registration; |
||
26 | |||
27 | /** |
||
28 | * @var EventController |
||
29 | */ |
||
30 | private $eventController; |
||
31 | |||
32 | public function __construct(Registration $registration, EventController $eventController) |
||
37 | |||
38 | /** |
||
39 | * @return Registration |
||
40 | */ |
||
41 | public function getRegistration(): Registration |
||
45 | |||
46 | /** |
||
47 | * @return EventController |
||
48 | */ |
||
49 | public function getEventController(): EventController |
||
53 | } |
||
54 |