27 lines
400 B
PHP
27 lines
400 B
PHP
<?php
|
|
|
|
namespace app\api\controller;
|
|
|
|
use hema\wechat\Index;
|
|
use hema\wechat\Pay as WxPay;
|
|
use app\api\model\Record as RecordModel;
|
|
|
|
|
|
/**
|
|
* 公众号事件接口
|
|
*/
|
|
class Wechat
|
|
{
|
|
|
|
/**
|
|
* 微信小程序充值成功异步通知
|
|
*/
|
|
public function index()
|
|
{
|
|
$WxPay = new Index();
|
|
$WxPay->index();
|
|
|
|
var_dump(2222222222);
|
|
}
|
|
}
|