| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- 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();
- }
- }
|