mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 08:35:00 +00:00
Strict comparisons.
This commit is contained in:
@@ -244,7 +244,7 @@ class BalanceReportHelper implements BalanceReportHelperInterface
|
||||
foreach ($accounts as $account) {
|
||||
$leftEntry = $tagsLeft->filter(
|
||||
function (Tag $tag) use ($account) {
|
||||
return $tag->account_id == $account->id;
|
||||
return $tag->account_id === $account->id;
|
||||
}
|
||||
);
|
||||
$left = '0';
|
||||
|
Reference in New Issue
Block a user