| Total Complexity | 6 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | final class WaitlistMoveUpEvent |
||
| 22 | { |
||
| 23 | public function __construct( |
||
| 24 | private readonly Event $event, |
||
| 25 | private readonly EventController $eventController, |
||
| 26 | private readonly ServerRequestInterface $request, |
||
| 27 | private bool $processDefaultMoveUp = true |
||
| 28 | ) { |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getEvent(): Event |
||
| 32 | { |
||
| 33 | return $this->event; |
||
| 34 | } |
||
| 35 | |||
| 36 | public function getEventController(): EventController |
||
| 37 | { |
||
| 38 | return $this->eventController; |
||
| 39 | } |
||
| 40 | |||
| 41 | public function getProcessDefaultMoveUp(): bool |
||
| 44 | } |
||
| 45 | |||
| 46 | public function setProcessDefaultMoveUp(bool $processDefaultMoveUp): void |
||
| 49 | } |
||
| 50 | |||
| 51 | public function getRequest(): ServerRequestInterface |
||
| 54 | } |
||
| 55 | } |
||
| 56 |