1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Events/ExpenseWasDeleted.php

24 lines
354 B
PHP
Raw Normal View History

2016-01-06 20:52:09 +01:00
<?php namespace App\Events;
use App\Events\Event;
use Illuminate\Queue\SerializesModels;
class ExpenseWasDeleted extends Event {
2016-01-07 16:14:11 +01:00
// Expenses
2016-01-06 20:52:09 +01:00
use SerializesModels;
public $expense;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($expense)
{
$this->expense = $expense;
}
}