1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Observers/AccountObserver.php
2021-06-16 16:58:16 +10:00

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://www.elastic.co/licensing/elastic-license
*/
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)
{
//
}
}