| Total Complexity | 4 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | final class ModifyConfirmRegistrationViewVariablesEvent |
||
| 20 | { |
||
| 21 | public function __construct(private array $variables, private readonly EventController $eventController) |
||
| 22 | { |
||
| 23 | } |
||
| 24 | |||
| 25 | public function getVariables(): array |
||
| 26 | { |
||
| 27 | return $this->variables; |
||
| 28 | } |
||
| 29 | |||
| 30 | public function setVariables(array $variables): void |
||
| 31 | { |
||
| 32 | $this->variables = $variables; |
||
| 33 | } |
||
| 34 | |||
| 35 | public function getEventController(): EventController |
||
| 38 | } |
||
| 39 | } |
||
| 40 |