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,30 @@
<?php
/**
*/
namespace app\event\message;
use app\model\member\Member;
/**
* 找回密码发送验证码
*/
class MessageFindCode
{
public function handle($param)
{
if ($param[ "keywords" ] == "FIND_PASSWORD") {
$member_model = new Member();
$result = $member_model->findCode($param);
return $result;
}
}
}