1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace Yansongda\Pay\Gateways\Wechat;
- use Yansongda\Pay\Exceptions\InvalidArgumentException;
- class WapGateway extends Wechat
- {
- /**
- * get trade type config.
- *
- * @author yansongda <me@yansongda.cn>
- *
- * @return string
- */
- protected function getTradeType()
- {
- return 'MWEB';
- }
- /**
- * pay a order.
- *
- * @author yansongda <me@yansongda.cn>
- *
- * @param array $config_biz
- *
- * @return string
- */
- public function pay(array $config_biz = [])
- {
- if (is_null($this->user_config->get('app_id'))) {
- throw new InvalidArgumentException('Missing Config -- [app_id]');
- }
- $data = $this->preOrder($config_biz);
- return is_null($this->user_config->get('return_url')) ? $data['mweb_url'] : $data['mweb_url'].
- '&redirect_url='.urlencode($this->user_config->get('return_url'));
- }
- }
|