1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Events/InvoiceInvitationWasViewed.php

38 lines
658 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Events;
2015-03-31 19:42:37 +02:00
use App\Models\Invitation;
use App\Models\Invoice;
2015-03-31 19:42:37 +02:00
use Illuminate\Queue\SerializesModels;
/**
2017-01-30 20:40:43 +01:00
* Class InvoiceInvitationWasViewed.
*/
2017-01-30 17:05:31 +01:00
class InvoiceInvitationWasViewed extends Event
{
use SerializesModels;
2015-03-31 19:42:37 +02:00
/**
* @var Invoice
*/
2015-03-31 20:50:58 +02:00
public $invoice;
/**
* @var Invitation
*/
2015-10-28 20:22:07 +01:00
public $invitation;
/**
* Create a new event instance.
*
2017-01-30 20:40:43 +01:00
* @param Invoice $invoice
* @param Invitation $invitation
*/
public function __construct(Invoice $invoice, Invitation $invitation)
2015-03-31 20:50:58 +02:00
{
$this->invoice = $invoice;
2015-10-28 20:22:07 +01:00
$this->invitation = $invitation;
2015-03-31 20:50:58 +02:00
}
2015-03-31 19:42:37 +02:00
}