PayTransfer.php 766 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\wechatpay\event;
  11. use addon\wechatpay\model\Pay;
  12. class PayTransfer
  13. {
  14. public function handle(array $params)
  15. {
  16. if ($params['transfer_type'] == 'wechatpay') {
  17. $is_weapp = $params['is_weapp'] ?? 0;
  18. $pay = new Pay($is_weapp, $params['site_id']);
  19. $res = $pay->transfer($params);
  20. return $res;
  21. }
  22. }
  23. }