1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Events/InvoiceWasRestored.php

34 lines
560 B
PHP
Raw Normal View History

2015-03-31 19:42:37 +02:00
<?php namespace App\Events;
use App\Models\Invoice;
2015-03-31 19:42:37 +02:00
use Illuminate\Queue\SerializesModels;
/**
* Class InvoiceWasRestored
*/
class InvoiceWasRestored extends Event
{
use SerializesModels;
2015-10-29 23:27:26 +01:00
/**
* @var Invoice
*/
2015-03-31 20:50:58 +02:00
public $invoice;
2015-10-29 23:27:26 +01:00
public $fromDeleted;
/**
* Create a new event instance.
*
* @param Invoice $invoice
* @param $fromDeleted
*/
public function __construct(Invoice $invoice, $fromDeleted)
2015-03-31 20:50:58 +02:00
{
$this->invoice = $invoice;
2015-10-29 23:27:26 +01:00
$this->fromDeleted = $fromDeleted;
2015-03-31 20:50:58 +02:00
}
2015-03-31 19:42:37 +02:00
}