mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 03:32:47 +08:00
39 lines
739 B
PHP
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);
|
|
}
|
|
|
|
}
|