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