40 lines
983 B
PHP
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;
|
|
}
|
|
}
|