| Total Complexity | 4 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 10 | #[Package('checkout')] |
||
| 11 | class RecurringPaymentOrderCriteriaEvent extends Event |
||
| 12 | { |
||
| 13 | public function __construct( |
||
| 14 | private readonly string $orderId, |
||
| 15 | private readonly Criteria $criteria, |
||
| 16 | private readonly Context $context |
||
| 17 | ) { |
||
| 18 | } |
||
| 19 | |||
| 20 | public function getOrderId(): string |
||
| 21 | { |
||
| 22 | return $this->orderId; |
||
| 23 | } |
||
| 24 | |||
| 25 | public function getCriteria(): Criteria |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getContext(): Context |
||
| 35 |