1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Observers/InvoiceObserver.php
2019-04-19 19:09:55 +10:00

64 lines
1.1 KiB
PHP

<?php
namespace App\Observers;
use App\Models\Invoice;
class InvoiceObserver
{
/**
* Handle the client "created" event.
*
* @param \App\Models\Client $client
* @return void
*/
public function created(Invoice $invoice)
{
//
}
/**
* Handle the client "updated" event.
*
* @param \App\Models\Client $client
* @return void
*/
public function updated(Invoice $invoice)
{
//
}
/**
* Handle the client "deleted" event.
*
* @param \App\Models\Client $client
* @return void
*/
public function deleted(Invoice $invoice)
{
//
}
/**
* Handle the client "restored" event.
*
* @param \App\Models\Client $client
* @return void
*/
public function restored(Invoice $invoice)
{
//
}
/**
* Handle the client "force deleted" event.
*
* @param \App\Models\Client $client
* @return void
*/
public function forceDeleted(Invoice $invoice)
{
//
}
}