Small code fixes.

This commit is contained in:
James Cole
2026-03-17 20:43:32 +01:00
parent 7c4f80a360
commit 9c10b01e8b
6 changed files with 7 additions and 7 deletions
@@ -66,7 +66,7 @@ final class TransactionController extends Controller
$internalRef = (string) $request->attributes->get('internal_reference'); $internalRef = (string) $request->attributes->get('internal_reference');
$notes = (string) $request->attributes->get('notes'); $notes = (string) $request->attributes->get('notes');
$description = (string) $request->attributes->get('description'); $description = (string) $request->attributes->get('description');
Log::debug(sprintf('Include deleted? %s', var_export($includeDeleted, true))); Log::debug(sprintf('Include deleted? %s', var_export(value: $includeDeleted, return: true)));
if ('' !== $externalId) { if ('' !== $externalId) {
$count += $this->repository->countByMeta('external_id', $externalId, $includeDeleted); $count += $this->repository->countByMeta('external_id', $externalId, $includeDeleted);
Log::debug(sprintf('Search for transactions with external_identifier "%s", count is now %d', $externalId, $count)); Log::debug(sprintf('Search for transactions with external_identifier "%s", count is now %d', $externalId, $count));
@@ -88,8 +88,8 @@ class UpgradesToGroups extends Command
$set = $journal->transactions->filter(static function (Transaction $subject) use ($transaction): bool { $set = $journal->transactions->filter(static function (Transaction $subject) use ($transaction): bool {
$amount = -(float) $transaction->amount === (float) $subject->amount; // intentional float $amount = -(float) $transaction->amount === (float) $subject->amount; // intentional float
$identifier = $transaction->identifier === $subject->identifier; $identifier = $transaction->identifier === $subject->identifier;
Log::debug(sprintf('Amount the same? %s', var_export($amount, true))); Log::debug(sprintf('Amount the same? %s', var_export($amount, return: true)));
Log::debug(sprintf('ID the same? %s', var_export($identifier, true))); Log::debug(sprintf('ID the same? %s', var_export($identifier, return: true)));
return $amount && $identifier; return $amount && $identifier;
}); });
+1 -1
View File
@@ -302,7 +302,7 @@ final class DebugController extends Controller
} }
return [ return [
'debug' => var_export(config('app.debug'), true), 'debug' => var_export(config('app.debug'), return: true),
'audit_log_channel' => implode(', ', config('logging.channels.audit.channels')), 'audit_log_channel' => implode(', ', config('logging.channels.audit.channels')),
'default_language' => (string) config('firefly.default_language'), 'default_language' => (string) config('firefly.default_language'),
'default_locale' => (string) config('firefly.default_locale'), 'default_locale' => (string) config('firefly.default_locale'),
+1 -1
View File
@@ -106,7 +106,7 @@ final class HomeController extends Controller
} }
$request->session()->put('is_custom_range', $isCustomRange); $request->session()->put('is_custom_range', $isCustomRange);
Log::debug(sprintf('Set is_custom_range to %s', var_export($isCustomRange, true))); Log::debug(sprintf('Set is_custom_range to %s', var_export($isCustomRange, return: true)));
$request->session()->put('start', $start); $request->session()->put('start', $start);
Log::debug(sprintf('Set start to %s', $start->format('Y-m-d H:i:s'))); Log::debug(sprintf('Set start to %s', $start->format('Y-m-d H:i:s')));
$request->session()->put('end', $end); $request->session()->put('end', $end);
@@ -116,7 +116,7 @@ final class JavascriptController extends Controller
'currencyCode' => $currency->code, 'currencyCode' => $currency->code,
'currencySymbol' => $currency->symbol, 'currencySymbol' => $currency->symbol,
'accountingLocaleInfo' => $accounting, 'accountingLocaleInfo' => $accounting,
'anonymous' => var_export(Steam::anonymous(), true), 'anonymous' => var_export(Steam::anonymous(), return: true),
'language' => $lang, 'language' => $lang,
'dateRangeTitle' => $dateRange['title'], 'dateRangeTitle' => $dateRange['title'],
'locale' => $locale, 'locale' => $locale,
@@ -82,7 +82,7 @@ final class IntroController extends Controller
Log::debug('Elements is array', $elements); Log::debug('Elements is array', $elements);
Log::debug('Keys is', array_keys($elements)); Log::debug('Keys is', array_keys($elements));
Log::debug(sprintf('Keys has "outro": %s', var_export($hasStep, true))); Log::debug(sprintf('Keys has "outro": %s', var_export($hasStep, return: true)));
return $hasStep; return $hasStep;
} }