| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 21 | class PaymentCardAdded extends Event |
||
| 22 | { |
||
| 23 | public const NAME = 'parthenon.billing.payment_card.added'; |
||
| 24 | |||
| 25 | public function __construct( |
||
| 26 | private CustomerInterface $customer, |
||
| 27 | private PaymentCard $paymentCard |
||
| 28 | ) { |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getCustomer(): CustomerInterface |
||
| 34 | } |
||
| 35 | |||
| 36 | public function getPaymentCard(): PaymentCard |
||
| 39 | } |
||
| 40 | } |
||
| 41 |