WapGateway.php 465 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Yansongda\Pay\Gateways\Alipay;
  3. class WapGateway extends WebGateway
  4. {
  5. /**
  6. * Get method config.
  7. *
  8. * @author yansongda <me@yansongda.cn>
  9. */
  10. protected function getMethod(): string
  11. {
  12. return 'alipay.trade.wap.pay';
  13. }
  14. /**
  15. * Get productCode config.
  16. *
  17. * @author yansongda <me@yansongda.cn>
  18. */
  19. protected function getProductCode(): string
  20. {
  21. return 'QUICK_WAP_WAY';
  22. }
  23. }