mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-12 03:01:18 +00:00
24 lines
278 B
PHP
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();
|
|
}
|
|
}
|
|
|
|
|