Total Complexity | 5 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | final class ModifyConfirmRegistrationViewVariablesEvent |
||
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 |
||
30 | { |
||
31 | return $this->variables; |
||
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 |