2019-05-16 14:29:59 +08:00

24 lines
278 B
PHP

<?php
namespace app\ebapi\controller;
use app\core\logic\Pay;
/**
* 支付回调
* Class Notify
* @package app\ebapi\controller
*/
//待完善
class Notify
{
/**
* 支付 异步回调
*/
public function notify()
{
Pay::notify();
}
}