mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 10:16:51 +01:00 
			
		
		
		
	* update composer.lock * run pint * fix phpstan * update migrations (sqlite `dropForeign`) * fix migrations * Reset these back for now * Alphabetize the rules * run `php artisan filament:upgrade` --------- Co-authored-by: Lance Pioch <git@lance.sh>
		
			
				
	
	
		
			17 lines
		
	
	
		
			293 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			293 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Events\Auth;
 | 
						|
 | 
						|
use App\Events\Event;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
 | 
						|
class FailedCaptcha extends Event
 | 
						|
{
 | 
						|
    use SerializesModels;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new event instance.
 | 
						|
     */
 | 
						|
    public function __construct(public string $ip, public ?string $message) {}
 | 
						|
}
 |