for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace yiicod\auth\models;
use Yii;
use yii\base\InvalidParamException;
use yii\base\Model;
/**
* Password reset form
*/
class ResetPasswordForm extends Model
{
public $password;
* @var User2
private $_user;
* Creates a form model given a token.
*
* @param string $token
* @param array $config name-value pairs that will be used to initialize the object properties
* @throws InvalidParamException if token is empty or not valid
public function __construct($token, $config = [])
if (empty($token) || !is_string($token)) {
throw new InvalidParamException('Password reset token cannot be blank.');
}
$userClass = Yii::$app->get('auth')->modelMap['user']['class'];
$this->_user = $userClass::findByPasswordResetToken($token);
if (!$this->_user) {
throw new InvalidParamException('Wrong password reset token.');
parent::__construct($config);
* @inheritdoc
public function rules()
return [
['password', 'required'],
['password', 'string', 'min' => 6],
];
* Resets password.
* @return bool if password was reset
public function resetPassword()
$user = $this->_user;
$user->generatePassword($this->password);
$user->removePasswordResetToken();
return $user->save();