change variable name from rawPasswd to rawPassword (#128)

This commit is contained in:
timgiroux 2018-10-09 04:00:26 -07:00 committed by Pig Fang
parent 607c207e2c
commit cfbfe60f89

View File

@ -8,18 +8,18 @@ class EncryptUserPassword extends Event
{ {
public $user; public $user;
public $rawPasswd; public $rawPassword;
/** /**
* Create a new event instance. * Create a new event instance.
* *
* @param string $rawPasswd * @param string $rawPassword
* @param User $user * @param User $user
* @return void * @return void
*/ */
public function __construct($rawPasswd, User $user) public function __construct($rawPassword, User $user)
{ {
$this->rawPasswd = $rawPasswd; $this->rawPassword = $rawPassword;
$this->user = $user; $this->user = $user;
} }
} }