* @copyright 2020 Copyright XEHub Corp. * @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) * @copyright 2020 Copyright XEHub Corp. * @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; } }