Auto commit for release 'develop' on 2025-03-05

This commit is contained in:
github-actions
2025-03-05 15:50:17 +01:00
parent 8c2672cdf8
commit 422a23e700
8 changed files with 71 additions and 69 deletions

View File

@@ -213,7 +213,7 @@ class BasicController extends Controller
'sub_title' => '',
];
}
if(0 === count($return)) {
if (0 === count($return)) {
$currency = $this->nativeCurrency;
// create objects for big array.
$return[] = [
@@ -309,10 +309,10 @@ class BasicController extends Controller
}
app('log')->debug(sprintf('Done with getBillInformation("%s", "%s")', $start->format('Y-m-d'), $end->format('Y-m-d-')));
if(0 === count($return)) {
if (0 === count($return)) {
$currency = $this->nativeCurrency;
unset($info);
unset($amount);
unset($info, $amount);
$return[] = [
'key' => sprintf('bills-paid-in-%s', $currency->code),
'title' => trans('firefly.box_bill_paid_in_currency', ['currency' => $currency->symbol]),
@@ -387,9 +387,9 @@ class BasicController extends Controller
),
];
}
if(0 === count($return)) {
if (0 === count($return)) {
$currency = $this->nativeCurrency;
$return[] = [
$return[] = [
'key' => sprintf('left-to-spend-in-%s', $currency->code),
'title' => trans('firefly.box_left_to_spend_in_currency', ['currency' => $currency->symbol]),
'monetary_value' => '0',