This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/api/controller/Notify.php
2020-04-25 22:20:29 +08:00

26 lines
453 B
PHP

<?php
namespace app\api\controller;
use app\common\library\wechat\WxPay;
/**
* 支付成功异步通知接口
* Class Notify
* @package app\api\controller
*/
class Notify
{
/**
* 支付成功异步通知
* @throws \think\Exception
* @throws \think\exception\DbException
*/
public function order()
{
// 微信支付组件:验证异步通知
$WxPay = new WxPay();
$WxPay->notify();
}
}