diff --git a/src/UserInput.php b/src/UserInput.php index ce1beb5..63ad8e0 100644 --- a/src/UserInput.php +++ b/src/UserInput.php @@ -4,21 +4,25 @@ use yii\base\Model; /** - * 用户注册或登录场景模型 + * 说明:用户注册或登录场景模型 + * 属性: + * @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; public $pwdConfirm; + + public function attributeLabels() { return [