mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
34 lines
560 B
PHP
34 lines
560 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Invoice;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Class InvoiceWasRestored.
|
|
*/
|
|
class InvoiceWasRestored extends Event
|
|
{
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* @var Invoice
|
|
*/
|
|
public $invoice;
|
|
|
|
public $fromDeleted;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param Invoice $invoice
|
|
* @param $fromDeleted
|
|
*/
|
|
public function __construct(Invoice $invoice, $fromDeleted)
|
|
{
|
|
$this->invoice = $invoice;
|
|
$this->fromDeleted = $fromDeleted;
|
|
}
|
|
}
|