Auto commit for release 'develop' on 2024-09-28

This commit is contained in:
github-actions 2024-09-28 08:36:26 +02:00
parent 441ada70b8
commit e7526ac5e3
2 changed files with 3 additions and 3 deletions

View File

@ -99,7 +99,7 @@ class AccountBalanceCalculator
return $entry;
}
private function optimizedCalculation(Collection $accounts, Carbon $notBefore = null): void
private function optimizedCalculation(Collection $accounts, ?Carbon $notBefore = null): void
{
Log::debug('start of optimizedCalculation');
if ($accounts->count() > 0) {
@ -121,7 +121,7 @@ class AccountBalanceCalculator
if ($accounts->count() > 0) {
$query->whereIn('transactions.account_id', $accounts->pluck('id')->toArray());
}
if(null !== $notBefore) {
if (null !== $notBefore) {
$notBefore->startOfDay();
$query->where('transaction_journals.date', '>=', $notBefore);
}

View File

@ -117,7 +117,7 @@ return [
'expression_engine' => true,
// see cer.php for exchange rates feature flag.
],
'version' => '6.1.20',
'version' => 'develop/2024-09-28',
'api_version' => '2.1.0',
'db_version' => 24,