1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-25 04:07:17 +08:00
koogua 6679214808 !1 精简优化代码
* 优化代码
* 重新提交LICENSE
* 测试前台支付,增加若干命令行快捷方法
* 删除文件 LICENSE
2020-09-26 18:59:02 +08:00

39 lines
739 B
PHP

<?php
namespace App\Http\Admin\Services;
use App\Models\Trade as TradeModel;
use App\Services\Pay\Wxpay as WxpayService;
class WxpayTest extends PayTest
{
protected $channel = TradeModel::CHANNEL_WXPAY;
public function scan(TradeModel $trade)
{
$wxpayService = new WxpayService();
$code = $wxpayService->scan($trade);
$codeUrl = null;
if ($code) {
$codeUrl = $this->url->get(
['for' => 'home.qrcode'],
['text' => urlencode($code)]
);
}
return $codeUrl ?: false;
}
public function status($tradeNo)
{
$wxpayService = new WxpayService();
return $wxpayService->status($tradeNo);
}
}