mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-15 13:22:51 +00:00
23 lines
310 B
PHP
23 lines
310 B
PHP
<?php
|
|
namespace app\routine\controller;
|
|
use service\MiniProgramService;
|
|
|
|
|
|
/**
|
|
* 小程序支付回调
|
|
* Class Routine
|
|
* @package app\routine\controller
|
|
*/
|
|
class Routine
|
|
{
|
|
/**
|
|
* 支付 异步回调
|
|
*/
|
|
public function notify()
|
|
{
|
|
MiniProgramService::handleNotify();
|
|
}
|
|
}
|
|
|
|
|