mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
39 lines
701 B
PHP
39 lines
701 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Events\Expense;
|
|
|
|
use App\Models\Expense;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Class ExpenseWasRestored.
|
|
*/
|
|
class ExpenseWasRestored
|
|
{
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* @var Expense
|
|
*/
|
|
public $expense;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param Expense $expense
|
|
*/
|
|
public function __construct(Expense $expense)
|
|
{
|
|
$this->expense = $expense;
|
|
}
|
|
}
|