Pos.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | WeChatDeveloper
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://think.ctolog.com
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/WeChatDeveloper
  12. // +----------------------------------------------------------------------
  13. namespace AliPay;
  14. use WeChat\Contracts\BasicAliPay;
  15. /**
  16. * 支付宝刷卡支付
  17. * Class Pos
  18. * @package AliPay
  19. */
  20. class Pos extends BasicAliPay
  21. {
  22. /**
  23. * Pos constructor.
  24. * @param array $options
  25. */
  26. public function __construct(array $options)
  27. {
  28. parent::__construct($options);
  29. $this->options->set('method', 'alipay.trade.pay');
  30. $this->params->set('product_code', 'FACE_TO_FACE_PAYMENT');
  31. }
  32. /**
  33. * 创建数据操作
  34. * @param array $options
  35. * @return array|bool
  36. * @throws \WeChat\Exceptions\InvalidResponseException
  37. * @throws \WeChat\Exceptions\LocalCacheException
  38. */
  39. public function apply($options)
  40. {
  41. return $this->getResult($options);
  42. }
  43. }