OrderPayNotify.php 693 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace app\event;
  11. use app\model\order\OrderCommon;
  12. /**
  13. * 订单异步回调执行
  14. */
  15. class OrderPayNotify
  16. {
  17. // 行为扩展的执行入口必须是run
  18. public function handle($data)
  19. {
  20. $order = new OrderCommon();
  21. $result = $order->orderOnlinePay($data);
  22. return $result;
  23. }
  24. }