PaymentSuccessEvent.php 322 B

12345678910111213141516
  1. <?php
  2. declare(strict_types=1);
  3. namespace SixShop\Payment\Event;
  4. use SixShop\Payment\Enum\PaymentBizEnum;
  5. class PaymentSuccessEvent
  6. {
  7. public function __construct(
  8. public string $orderNo,
  9. public string $paymentType,
  10. public array $payment,
  11. public PaymentBizEnum $bizType,
  12. ) {
  13. }
  14. }