 d555c42644
			
		
	
	
		d555c42644
		
			
		
	
	
	
	
		
			
			* 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>
		
			
				
	
	
		
			12 lines
		
	
	
		
			216 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			216 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Events\Auth;
 | |
| 
 | |
| use App\Models\User;
 | |
| use App\Events\Event;
 | |
| 
 | |
| class ProvidedAuthenticationToken extends Event
 | |
| {
 | |
|     public function __construct(public User $user, public bool $recovery = false) {}
 | |
| }
 |