webworld888/app/Events/PreResetUserPasswordEvent.php
2021-10-26 19:14:12 +09:00

40 lines
983 B
PHP

<?php
/**
* PreResetUserPasswordEvent.php
*
* PHP version 7
*
* @category Events
* @package App\Events
* @author XE Team (developers) <developers@xpressengine.com>
* @copyright 2020 Copyright XEHub Corp. <https://www.xehub.io>
* @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL
* @link http://www.xpressengine.com
*/
namespace App\Events;
/**
* Class PreResetUserPasswordEvent
*
* @category Events
* @package App\Events
* @author XE Team (developers) <developers@xpressengine.com>
* @copyright 2020 Copyright XEHub Corp. <https://www.xehub.io>
* @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL
* @link http://www.xpressengine.com
*/
class PreResetUserPasswordEvent
{
public $credentials;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($credentials)
{
$this->credentials = $credentials;
}
}