Revert "change variable name from rawPasswd to rawPassword (#128)"

This reverts commit cfbfe60f89.

Ref: #14
This commit is contained in:
Pig Fang 2019-03-30 11:54:24 +08:00
parent 9a095732fa
commit cbfce9ab2e

View File

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