44 lines
		
	
	
		
			808 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			808 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Pterodactyl - Panel
 | 
						|
 * Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
 | 
						|
 *
 | 
						|
 * This software is licensed under the terms of the MIT license.
 | 
						|
 * https://opensource.org/licenses/MIT
 | 
						|
 */
 | 
						|
 | 
						|
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.
 | 
						|
     *
 | 
						|
     * @param string $ip
 | 
						|
     * @param string $email
 | 
						|
     */
 | 
						|
    public function __construct($ip, $email)
 | 
						|
    {
 | 
						|
        $this->ip = $ip;
 | 
						|
        $this->email = $email;
 | 
						|
    }
 | 
						|
}
 |