mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-18 04:19:12 +00:00
Code cleanup
This commit is contained in:
@@ -52,10 +52,10 @@ class OpposingAccountIbans implements MapperInterface
|
||||
foreach ($set as $account) {
|
||||
$iban = $account->iban ?? '';
|
||||
$accountId = (int)$account->id;
|
||||
if (strlen($iban) > 0) {
|
||||
if (\strlen($iban) > 0) {
|
||||
$topList[$accountId] = $account->iban . ' (' . $account->name . ')';
|
||||
}
|
||||
if (0 === strlen($iban)) {
|
||||
if (0 === \strlen($iban)) {
|
||||
$list[$accountId] = $account->name;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user