Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | final class PaymentOrderSubmittedEvent extends Event |
||
25 | { |
||
26 | public const NAME = 'payment_order.submitted'; |
||
27 | |||
28 | private $payment_order; |
||
29 | |||
30 | public function __construct(PaymentOrder $paymentOrder) |
||
31 | { |
||
32 | $this->payment_order = $paymentOrder; |
||
33 | } |
||
34 | |||
35 | public function getPaymentOrder(): PaymentOrder |
||
38 | } |
||
39 | } |
||
40 |