Auto commit for release 'branch-v6.2' on 2024-12-27

This commit is contained in:
github-actions
2024-12-27 12:43:57 +01:00
parent 0fa3c2bd8d
commit aa5bde122e
4 changed files with 44 additions and 55 deletions

View File

@@ -37,7 +37,7 @@ class AccountObserver
{
public function created(Account $account): void
{
// Log::debug('Observe "created" of an account.');
// Log::debug('Observe "created" of an account.');
$this->updateNativeAmount($account);
}
@@ -57,7 +57,7 @@ class AccountObserver
$account->native_virtual_balance = null;
}
$account->saveQuietly();
//Log::debug('Account native virtual balance is updated.');
// Log::debug('Account native virtual balance is updated.');
}
/**
@@ -65,7 +65,7 @@ class AccountObserver
*/
public function deleting(Account $account): void
{
// app('log')->debug('Observe "deleting" of an account.');
// app('log')->debug('Observe "deleting" of an account.');
$account->accountMeta()->delete();
/** @var PiggyBank $piggy */
@@ -84,7 +84,7 @@ class AccountObserver
public function updated(Account $account): void
{
// Log::debug('Observe "updated" of an account.');
// Log::debug('Observe "updated" of an account.');
$this->updateNativeAmount($account);
}
}