| 12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * 扫码场景下单并支付
- */
- namespace JiaLeo\Payment\Wechatpay;
- use JiaLeo\Payment\Common\PaymentException;
- class NativePay extends BasePay
- {
- public $tradeType = 'NATIVE';
- public $device = 'NATIVE';
- /**
- * 下单处理
- * @param $params
- * @return string
- * @throws PaymentException
- */
- public function handle($params)
- {
- $pay_info = $this->pay($params);
- return $pay_info['code_url'];
- }
- }
|