Total Complexity | 3 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | final readonly class EventPidCheckFailedEvent |
||
|
|||
21 | { |
||
22 | public function __construct( |
||
23 | private Event $event, |
||
24 | private ServerRequestInterface $request |
||
25 | ) { |
||
26 | } |
||
27 | |||
28 | public function getEvent(): Event |
||
29 | { |
||
30 | return $this->event; |
||
31 | } |
||
32 | |||
33 | public function getRequest(): ServerRequestInterface |
||
34 | { |
||
38 |