mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
30 lines
456 B
PHP
30 lines
456 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Events;
|
||
|
|
||
|
use App\Models\Invoice;
|
||
|
use Illuminate\Queue\SerializesModels;
|
||
|
|
||
|
/**
|
||
|
* Class InvoiceItemsWereCreated.
|
||
|
*/
|
||
|
class InvoiceItemsWereCreated extends Event
|
||
|
{
|
||
|
use SerializesModels;
|
||
|
|
||
|
/**
|
||
|
* @var Invoice
|
||
|
*/
|
||
|
public $invoice;
|
||
|
|
||
|
/**
|
||
|
* Create a new event instance.
|
||
|
*
|
||
|
* @param Invoice $invoice
|
||
|
*/
|
||
|
public function __construct(Invoice $invoice)
|
||
|
{
|
||
|
$this->invoice = $invoice;
|
||
|
}
|
||
|
}
|