mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
64 lines
1.2 KiB
PHP
64 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\ClientContact;
|
|
|
|
class ClientContactObserver
|
|
{
|
|
/**
|
|
* Handle the client contact "created" event.
|
|
*
|
|
* @param \App\Models\ClientContact $clientContact
|
|
* @return void
|
|
*/
|
|
public function created(ClientContact $clientContact)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the client contact "updated" event.
|
|
*
|
|
* @param \App\Models\ClientContact $clientContact
|
|
* @return void
|
|
*/
|
|
public function updated(ClientContact $clientContact)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the client contact "deleted" event.
|
|
*
|
|
* @param \App\Models\ClientContact $clientContact
|
|
* @return void
|
|
*/
|
|
public function deleted(ClientContact $clientContact)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the client contact "restored" event.
|
|
*
|
|
* @param \App\Models\ClientContact $clientContact
|
|
* @return void
|
|
*/
|
|
public function restored(ClientContact $clientContact)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the client contact "force deleted" event.
|
|
*
|
|
* @param \App\Models\ClientContact $clientContact
|
|
* @return void
|
|
*/
|
|
public function forceDeleted(ClientContact $clientContact)
|
|
{
|
|
//
|
|
}
|
|
}
|