| Total Complexity | 5 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | final class ProceedWithPaymentActionEvent |
||
| 21 | { |
||
| 22 | private bool $performPaidCheck = true; |
||
| 23 | private Registration $registration; |
||
| 24 | private string $actionName; |
||
| 25 | |||
| 26 | public function __construct(Registration $registration, string $actionName) |
||
| 27 | { |
||
| 28 | $this->registration = $registration; |
||
| 29 | $this->actionName = $actionName; |
||
| 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 |