🤖 Auto commit for release 'develop' on 2025-08-10

This commit is contained in:
JC5
2025-08-10 06:42:59 +02:00
parent 8cd50bb5bd
commit 9ccb8ae692
5 changed files with 8 additions and 8 deletions

View File

@@ -82,7 +82,7 @@ class ShowController extends Controller
* */
public function show(Request $request, Account $account, ?Carbon $start = null, ?Carbon $end = null)
{
if(0 === $account->id) {
if (0 === $account->id) {
throw new NotFoundHttpException();
}
$objectType = config(sprintf('firefly.shortNamesByFullName.%s', $account->accountType->type));
@@ -119,7 +119,7 @@ class ShowController extends Controller
$firstTransaction = $this->repository->oldestJournalDate($account) ?? $start;
Log::debug('Start period overview');
$timer = Timer::getInstance();
$timer = Timer::getInstance();
$timer->start('period-overview');
$periods = $this->getAccountPeriodOverview($account, $firstTransaction, $end);