123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- declare (strict_types = 1);
- namespace app\event;
- use app\model\order\OrderCommon;
- class OrderPayNotify
- {
-
-
- public function handle($data)
- {
- $order = new OrderCommon();
- $order->orderOnlinePay($data);
- }
-
- }
|