Total Complexity | 5 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | final class ProceedWithPaymentActionEvent |
||
21 | { |
||
22 | private bool $performPaidCheck = true; |
||
23 | |||
24 | public function __construct( |
||
25 | private readonly Registration $registration, |
||
26 | private readonly string $actionName |
||
27 | ) { |
||
28 | } |
||
29 | |||
30 | public function getRegistration(): Registration |
||
33 | } |
||
34 | |||
35 | public function getActionName(): string |
||
38 | } |
||
39 | |||
40 | public function getPerformPaidCheck(): bool |
||
43 | } |
||
44 | |||
45 | public function setPerformPaidCheck(bool $performPaidCheck): void |
||
48 | } |
||
49 | } |
||
50 |