mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-28 03:13:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			749 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			749 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://opensource.org/licenses/AAL
 | |
|  */
 | |
| 
 | |
| namespace App\Events\Credit;
 | |
| 
 | |
| use App\Models\Company;
 | |
| use Illuminate\Queue\SerializesModels;
 | |
| 
 | |
| /**
 | |
|  * Class CreditWasViewed.
 | |
|  */
 | |
| class CreditWasViewed
 | |
| {
 | |
|     use SerializesModels;
 | |
| 
 | |
|     public $invitation;
 | |
| 
 | |
|     public $company;
 | |
| 
 | |
|     public $event_vars;
 | |
| 
 | |
|     public function __construct(CreditInvitation $invitation, Company $company, array $event_vars)
 | |
|     {
 | |
|         $this->invitation = $invitation;
 | |
|         $this->company = $company;
 | |
|         $this->event_vars = $event_vars;
 | |
|     }
 | |
| }
 |