guild/frontend/modules/api/models/profile/ProfileChangePasswordForm.php

31 lines
496 B
PHP
Raw Normal View History

<?php
namespace frontend\modules\api\models\profile;
use yii\base\Model;
class ProfileChangePasswordForm extends Model
{
public $password;
public $newPassword;
/**
* @return array
*/
public function rules()
{
return [
[['password', 'newPassword'], 'string'],
[['password', 'newPassword'], 'required'],
];
}
/**
* @return string
*/
public function formName(): string
{
return '';
}
}