mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-16 09:22:33 +00:00
More PHP8.4 updates
This commit is contained in:
@@ -204,7 +204,7 @@ class IndexController extends Controller
|
||||
{
|
||||
$result = [];
|
||||
foreach ($endBalances as $key => $value) {
|
||||
$result[$key] = bcsub($value, $startBalances[$key] ?? '0');
|
||||
$result[$key] = bcsub((string) $value, $startBalances[$key] ?? '0');
|
||||
}
|
||||
|
||||
return $result;
|
||||
|
Reference in New Issue
Block a user