mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 12:37:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			263 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			263 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Events;
 | |
| 
 | |
| use Illuminate\Queue\SerializesModels;
 | |
| 
 | |
| /**
 | |
|  * Class UserSignedUp.
 | |
|  */
 | |
| class UserSignedUp extends Event
 | |
| {
 | |
|     use SerializesModels;
 | |
| 
 | |
|     /**
 | |
|      * Create a new event instance.
 | |
|      */
 | |
|     public function __construct()
 | |
|     {
 | |
|     }
 | |
| }
 |