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 PayPaymentOrderCriteriaEvent extends Event |
||
12 | { |
||
13 | public function __construct( |
||
14 | private readonly string $orderId, |
||
15 | private readonly Criteria $criteria, |
||
16 | private readonly SalesChannelContext $context |
||
17 | ) { |
||
18 | } |
||
19 | |||
20 | public function getOrderId(): string |
||
23 | } |
||
24 | |||
25 | public function getCriteria(): Criteria |
||
26 | { |
||
27 | return $this->criteria; |
||
28 | } |
||
29 | |||
30 | public function getContext(): SalesChannelContext |
||
33 | } |
||
34 | } |
||
35 |