| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | final class AfterRegistrationCancelledEvent |
||
| 21 | { |
||
| 22 | private Registration $registration; |
||
| 23 | private EventController $eventController; |
||
| 24 | |||
| 25 | public function __construct(Registration $registration, EventController $eventController) |
||
| 26 | { |
||
| 27 | $this->registration = $registration; |
||
| 28 | $this->eventController = $eventController; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getRegistration(): Registration |
||
| 34 | } |
||
| 35 | |||
| 36 | public function getEventController(): EventController |
||
| 39 | } |
||
| 40 | } |
||
| 41 |