2017-03-30 21:44:20 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-03-30 21:44:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pterodactyl\Events\Auth;
|
|
|
|
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
class FailedPasswordReset
|
|
|
|
{
|
|
|
|
use SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The IP that the request originated from.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $ip;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The email address that was used when the reset request failed.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $email;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param string $ip
|
|
|
|
* @param string $email
|
2017-03-30 21:44:20 +00:00
|
|
|
*/
|
|
|
|
public function __construct($ip, $email)
|
|
|
|
{
|
|
|
|
$this->ip = $ip;
|
|
|
|
$this->email = $email;
|
|
|
|
}
|
|
|
|
}
|