Trade.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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 Trade
  18. * @package AliPay
  19. */
  20. class Trade extends BasicAliPay
  21. {
  22. /**
  23. * 设置交易接口地址
  24. * @param string $method
  25. * @return $this
  26. */
  27. public function setMethod($method)
  28. {
  29. $this->options->set('method', $method);
  30. return $this;
  31. }
  32. /**
  33. * 获取交易接口地址
  34. * @return string
  35. */
  36. public function getMethod()
  37. {
  38. return $this->options->get('method');
  39. }
  40. /**
  41. * 设置接口公共参数
  42. * @param array $option
  43. * @return Trade
  44. */
  45. public function setOption($option = [])
  46. {
  47. foreach ($option as $key => $vo) {
  48. $this->options->set($key, $vo);
  49. }
  50. return $this;
  51. }
  52. /**
  53. * 获取接口公共参数
  54. * @return array|string|null
  55. */
  56. public function getOption()
  57. {
  58. return $this->options->get();
  59. }
  60. /**
  61. * 执行通过接口
  62. * @param array $options
  63. * @return array|boolean
  64. * @throws \WeChat\Exceptions\InvalidResponseException
  65. * @throws \WeChat\Exceptions\LocalCacheException
  66. */
  67. public function apply($options)
  68. {
  69. return $this->getResult($options);
  70. }
  71. }