1234567891011121314151617181920212223242526 |
- <?php
- namespace Yansongda\Pay\Gateways\Alipay;
- class WapGateway extends WebGateway
- {
- /**
- * Get method config.
- *
- * @author yansongda <me@yansongda.cn>
- */
- protected function getMethod(): string
- {
- return 'alipay.trade.wap.pay';
- }
- /**
- * Get productCode config.
- *
- * @author yansongda <me@yansongda.cn>
- */
- protected function getProductCode(): string
- {
- return 'QUICK_WAP_WAY';
- }
- }
|