26 lines
453 B
PHP
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();
|
||
|
}
|
||
|
}
|