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

73 lines
1.3 KiB
PHP
Raw Normal View History

2019-04-19 11:09:55 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 05:32:07 +02:00
*/
2019-04-19 11:09:55 +02:00
namespace App\Observers;
use App\Models\Account;
class AccountObserver
{
/**
* Handle the account "created" event.
*
2020-10-28 11:10:49 +01:00
* @param Account $account
2019-04-19 11:09:55 +02:00
* @return void
*/
public function created(Account $account)
{
//
}
/**
* Handle the account "updated" event.
*
2020-10-28 11:10:49 +01:00
* @param Account $account
2019-04-19 11:09:55 +02:00
* @return void
*/
public function updated(Account $account)
{
//
}
/**
* Handle the account "deleted" event.
*
2020-10-28 11:10:49 +01:00
* @param Account $account
2019-04-19 11:09:55 +02:00
* @return void
*/
public function deleted(Account $account)
{
//
}
/**
* Handle the account "restored" event.
*
2020-10-28 11:10:49 +01:00
* @param Account $account
2019-04-19 11:09:55 +02:00
* @return void
*/
public function restored(Account $account)
{
//
}
/**
* Handle the account "force deleted" event.
*
2020-10-28 11:10:49 +01:00
* @param Account $account
2019-04-19 11:09:55 +02:00
* @return void
*/
public function forceDeleted(Account $account)
{
//
}
}