mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-19 19:01:39 +00:00
Remove reference to a method no longer used.
This commit is contained in:
@@ -110,7 +110,7 @@ class DoubleController extends Controller
|
||||
array_multisort($amounts, SORT_ASC, $result);
|
||||
|
||||
try {
|
||||
$result = prefixView('reports.double.partials.avg-expenses', compact('result'))->render();
|
||||
$result = view('reports.double.partials.avg-expenses', compact('result'))->render();
|
||||
|
||||
} catch (Throwable $e) { // @phpstan-ignore-line
|
||||
Log::debug(sprintf('Could not render reports.partials.budget-period: %s', $e->getMessage()));
|
||||
@@ -162,7 +162,7 @@ class DoubleController extends Controller
|
||||
array_multisort($amounts, SORT_DESC, $result);
|
||||
|
||||
try {
|
||||
$result = prefixView('reports.double.partials.avg-income', compact('result'))->render();
|
||||
$result = view('reports.double.partials.avg-income', compact('result'))->render();
|
||||
|
||||
} catch (Throwable $e) { // @phpstan-ignore-line
|
||||
Log::debug(sprintf('Could not render reports.partials.budget-period: %s', $e->getMessage()));
|
||||
@@ -288,7 +288,7 @@ class DoubleController extends Controller
|
||||
}
|
||||
}
|
||||
|
||||
return prefixView('reports.double.partials.accounts', compact('sums', 'report'));
|
||||
return view('reports.double.partials.accounts', compact('sums', 'report'));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -413,7 +413,7 @@ class DoubleController extends Controller
|
||||
}
|
||||
}
|
||||
|
||||
return prefixView('reports.double.partials.accounts-per-asset', compact('sums', 'report'));
|
||||
return view('reports.double.partials.accounts-per-asset', compact('sums', 'report'));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -456,7 +456,7 @@ class DoubleController extends Controller
|
||||
array_multisort($amounts, SORT_ASC, $result);
|
||||
|
||||
try {
|
||||
$result = prefixView('reports.double.partials.top-expenses', compact('result'))->render();
|
||||
$result = view('reports.double.partials.top-expenses', compact('result'))->render();
|
||||
|
||||
} catch (Throwable $e) { // @phpstan-ignore-line
|
||||
Log::debug(sprintf('Could not render reports.partials.budget-period: %s', $e->getMessage()));
|
||||
@@ -506,7 +506,7 @@ class DoubleController extends Controller
|
||||
array_multisort($amounts, SORT_DESC, $result);
|
||||
|
||||
try {
|
||||
$result = prefixView('reports.double.partials.top-income', compact('result'))->render();
|
||||
$result = view('reports.double.partials.top-income', compact('result'))->render();
|
||||
|
||||
} catch (Throwable $e) { // @phpstan-ignore-line
|
||||
Log::debug(sprintf('Could not render reports.partials.budget-period: %s', $e->getMessage()));
|
||||
|
Reference in New Issue
Block a user