mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
73 lines
1.3 KiB
PHP
73 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\Account;
|
|
|
|
class AccountObserver
|
|
{
|
|
/**
|
|
* Handle the account "created" event.
|
|
*
|
|
* @param Account $account
|
|
* @return void
|
|
*/
|
|
public function created(Account $account)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the account "updated" event.
|
|
*
|
|
* @param Account $account
|
|
* @return void
|
|
*/
|
|
public function updated(Account $account)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the account "deleted" event.
|
|
*
|
|
* @param Account $account
|
|
* @return void
|
|
*/
|
|
public function deleted(Account $account)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the account "restored" event.
|
|
*
|
|
* @param Account $account
|
|
* @return void
|
|
*/
|
|
public function restored(Account $account)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the account "force deleted" event.
|
|
*
|
|
* @param Account $account
|
|
* @return void
|
|
*/
|
|
public function forceDeleted(Account $account)
|
|
{
|
|
//
|
|
}
|
|
}
|