Update Test.php

This commit is contained in:
Anyon 2020-06-19 11:02:55 +08:00
parent c5b5f300b6
commit b76d867c61

View File

@ -76,8 +76,7 @@ class Test extends Controller
public function scan_one_qrc() public function scan_one_qrc()
{ {
$pay = WechatService::WePayOrder(); $pay = WechatService::WePayOrder();
$result = $pay->qrcParams('8888888'); return $this->showQrc($pay->qrcParams('8888888'));
return $this->showQrc($result);
} }
/** /**
@ -91,8 +90,7 @@ class Test extends Controller
*/ */
public function scan_two_qrc() public function scan_two_qrc()
{ {
$pay = WechatService::WePayOrder(); $result = WechatService::WePayOrder()->create([
$result = $pay->create([
'body' => '测试商品', 'body' => '测试商品',
'total_fee' => '1', 'total_fee' => '1',
'trade_type' => 'NATIVE', 'trade_type' => 'NATIVE',