| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class PaymentCreated extends Event |
||
| 21 | { |
||
| 22 | public const NAME = 'parthenon.billing.payment.created'; |
||
| 23 | |||
| 24 | public function __construct(private Payment $payment, private bool $subscriptionPayment = false) |
||
| 25 | { |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getPayment(): Payment |
||
| 31 | } |
||
| 32 | |||
| 33 | public function isSubscriptionPayment(): bool |
||
| 38 |