| 12345678910111213141516 |
- <?php
- declare(strict_types=1);
- namespace SixShop\Payment\Event;
- use SixShop\Payment\Enum\PaymentBizEnum;
- class PaymentSuccessEvent
- {
- public function __construct(
- public string $orderNo,
- public string $paymentType,
- public array $payment,
- public PaymentBizEnum $bizType,
- ) {
- }
- }
|