mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:37:32 -05:00 
			
		
		
		
	- Removed unused uses - Type hinting for method parameters - Removed commented code - Introduced comments for classes and methods - Short array syntax
		
			
				
	
	
		
			36 lines
		
	
	
		
			651 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			651 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php namespace App\Events;
 | 
						|
 | 
						|
use App\Models\Invitation;
 | 
						|
use App\Models\Invoice;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class InvoiceInvitationWasViewed
 | 
						|
 */
 | 
						|
class InvoiceInvitationWasViewed extends Event {
 | 
						|
 | 
						|
	use SerializesModels;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var Invoice
 | 
						|
     */
 | 
						|
    public $invoice;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var Invitation
 | 
						|
     */
 | 
						|
    public $invitation;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new event instance.
 | 
						|
     *
 | 
						|
     * @param Invoice $invoice
 | 
						|
     * @param Invitation $invitation
 | 
						|
     */
 | 
						|
    public function __construct(Invoice $invoice, Invitation $invitation)
 | 
						|
    {
 | 
						|
        $this->invoice = $invoice;
 | 
						|
        $this->invitation = $invitation;
 | 
						|
    }
 | 
						|
}
 |