Fix cast bad type

This commit is contained in:
Laurent Destailleur 2022-12-30 19:39:08 +01:00
parent c5ca50b5db
commit 1fde0a70f5
2 changed files with 2 additions and 2 deletions

View File

@ -349,7 +349,7 @@ class CompanyBankAccount extends Account
$rib = $this->label." : ";
}
$rib .= (string) $this;
$rib .= $this->iban;
}
return $rib;

View File

@ -241,7 +241,7 @@ class UserBankAccount extends Account
$rib = $this->label." : ";
}
$rib .= (string) $this;
$rib .= $this->iban;
}
return $rib;