mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 17:26:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			305 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			305 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Events\Auth;
 | |
| 
 | |
| use App\Events\Event;
 | |
| use Illuminate\Queue\SerializesModels;
 | |
| 
 | |
| class FailedPasswordReset extends Event
 | |
| {
 | |
|     use SerializesModels;
 | |
| 
 | |
|     /**
 | |
|      * Create a new event instance.
 | |
|      */
 | |
|     public function __construct(public string $ip, public string $email)
 | |
|     {
 | |
|     }
 | |
| }
 | 
