CloseSmsPayment.php 599 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * NiuShop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. */
  9. namespace addon\niusms\event;
  10. use addon\niusms\model\Order;
  11. /**
  12. * 关闭短信充值订单
  13. */
  14. class CloseSmsPayment
  15. {
  16. public function handle($param)
  17. {
  18. $order = new Order();
  19. $res = $order->cronCloseSmsPayment($param[ 'relate_id' ]);
  20. return $res;
  21. }
  22. }