mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
cbfce9ab2e
This reverts commit cfbfe60f89
.
Ref: #14
26 lines
415 B
PHP
26 lines
415 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\User;
|
|
|
|
class EncryptUserPassword extends Event
|
|
{
|
|
public $user;
|
|
|
|
public $rawPasswd;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param string $rawPasswd
|
|
* @param User $user
|
|
* @return void
|
|
*/
|
|
public function __construct($rawPasswd, User $user)
|
|
{
|
|
$this->rawPasswd = $rawPasswd;
|
|
$this->user = $user;
|
|
}
|
|
}
|