| Total Complexity | 5 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | final class ModifyRegistrationViewVariablesEvent |
||
| 21 | { |
||
| 22 | public function __construct( |
||
| 23 | private array $variables, |
||
| 24 | private readonly EventController $eventController, |
||
| 25 | private readonly ServerRequestInterface $request |
||
| 26 | ) { |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getVariables(): array |
||
| 32 | } |
||
| 33 | |||
| 34 | public function setVariables(array $variables): void |
||
| 35 | { |
||
| 36 | $this->variables = $variables; |
||
| 37 | } |
||
| 38 | |||
| 39 | public function getEventController(): EventController |
||
| 40 | { |
||
| 41 | return $this->eventController; |
||
| 42 | } |
||
| 43 | |||
| 44 | public function getRequest(): ServerRequestInterface |
||
| 47 | } |
||
| 48 | } |
||
| 49 |