Total Complexity | 6 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | final class ProceedWithPaymentActionEvent |
||
22 | { |
||
23 | private bool $performPaidCheck = true; |
||
24 | |||
25 | public function __construct( |
||
26 | private readonly Registration $registration, |
||
27 | private readonly string $actionName, |
||
28 | private readonly ServerRequestInterface $request |
||
29 | ) { |
||
30 | } |
||
31 | |||
32 | public function getRegistration(): Registration |
||
35 | } |
||
36 | |||
37 | public function getActionName(): string |
||
40 | } |
||
41 | |||
42 | public function getPerformPaidCheck(): bool |
||
45 | } |
||
46 | |||
47 | public function setPerformPaidCheck(bool $performPaidCheck): void |
||
50 | } |
||
51 | |||
52 | public function getRequest(): ServerRequestInterface |
||
57 |