invoiceninja/app/Listeners/TaskListener.php
2017-01-30 21:40:43 +02:00

23 lines
446 B
PHP

<?php
namespace App\Listeners;
use App\Events\InvoiceWasDeleted;
use App\Models\Task;
/**
* Class TaskListener.
*/
class TaskListener
{
/**
* @param InvoiceWasDeleted $event
*/
public function deletedInvoice(InvoiceWasDeleted $event)
{
// Release any tasks associated with the deleted invoice
Task::where('invoice_id', '=', $event->invoice->id)
->update(['invoice_id' => null]);
}
}