From 33302b710ded80102b62bc7e8869808e962b134b Mon Sep 17 00:00:00 2001 From: kuangweijian <867034892@qq.com> Date: Fri, 25 Mar 2022 16:58:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/UserInput.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/UserInput.php b/src/UserInput.php index 5a37538..ce1beb5 100644 --- a/src/UserInput.php +++ b/src/UserInput.php @@ -5,13 +5,15 @@ /** * 用户注册或登录场景模型 - * @name string 用户名 - * @eamil string 用户邮箱 - * @password string 用户密码 - * @pwdConfirm string 确认密码 */ class UserInput extends Model { + /** + * @name string 用户名 + * @eamil string 用户邮箱 + * @password string 用户密码 + * @pwdConfirm string 确认密码 + */ public $name; public $email; public $password;