PayTransfer.php 1018 B

123456789101112131415161718192021222324252627
  1. <?php
  2. // +---------------------------------------------------------------------+
  3. // | NiuCloud | [ WE CAN DO IT JUST NiuCloud ]  |
  4. // +---------------------------------------------------------------------+
  5. // | Copy right 2019-2029 www.niucloud.com  |
  6. // +---------------------------------------------------------------------+
  7. // | Author | NiuCloud <niucloud@outlook.com>  |
  8. // +---------------------------------------------------------------------+
  9. // | Repository | https://github.com/niucloud/framework.git  |
  10. // +---------------------------------------------------------------------+
  11. declare (strict_types = 1);
  12. namespace addon\alipay\event;
  13. use addon\alipay\model\Pay;
  14. class PayTransfer
  15. {
  16. public function handle(array $params)
  17. {
  18. if ($params['transfer_type'] == 'alipay') {
  19. $pay = new Pay();
  20. $res = $pay->payTransfer($params);
  21. return $res;
  22. }
  23. }
  24. }