Fix code quality and CS fixer

This commit is contained in:
James Cole
2023-11-05 08:28:05 +01:00
parent c1cc71f85c
commit 9002365e6d
3 changed files with 4 additions and 24 deletions

View File

@@ -147,7 +147,7 @@ class ExpenseReportController extends Controller
while ($currentStart < $end) {
$currentEnd = clone $currentStart;
$currentEnd = $currentEnd->$function(); // @phpstan-ignore-line
$currentEnd = $currentEnd->$function(); /** @phpstan-ignore-line */
// get expenses grouped by opposing name:
$expenses = $this->groupByName($this->getExpensesForOpposing($accounts, $all, $currentStart, $currentEnd));