This commit is contained in:
2025-10-29 15:32:26 +08:00
parent d90614805b
commit b7462657cd
78921 changed files with 2753938 additions and 71 deletions

View File

@@ -0,0 +1,33 @@
<?php
/**
*/
namespace app\event\message;
use addon\membercancel\model\MemberCancel;
/**
* 会员注销成功通知
*/
class MessageCancelSuccess
{
/**
* @param $param
* @return array
*/
public function handle($param)
{
//发送订单消息
if ($param[ "keywords" ] == "USER_CANCEL_SUCCESS") {
$model = new MemberCancel();
return $model->memberCancelSuccess($param);
}
}
}