12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace Yansongda\Pay\Gateways\Wechat;
- use Yansongda\Pay\Exceptions\InvalidArgumentException;
- class PosGateway extends Wechat
- {
- /**
- * @var string
- */
- protected $gateway_order = 'pay/micropay';
- /**
- * get trade type config.
- *
- * @author yansongda <me@yansongda.cn>
- *
- * @return string
- */
- protected function getTradeType()
- {
- return 'MICROPAY';
- }
- /**
- * pay a order.
- *
- * @author yansongda <me@yansongda.cn>
- *
- * @param array $config_biz
- *
- * @return array
- */
- public function pay(array $config_biz = [])
- {
- if (is_null($this->user_config->get('app_id'))) {
- throw new InvalidArgumentException('Missing Config -- [app_id]');
- }
- unset($this->config['trade_type']);
- unset($this->config['notify_url']);
- return $this->preOrder($config_biz);
- }
- }
|