Skip to content

Commit 27e0dac

Browse files
author
Robert Becker
committed
Fix code style conformity
1 parent ab22445 commit 27e0dac

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/Fhp/Segment/HIUPD/HIUPDv6.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ class HIUPDv6 extends BaseSegment implements HIUPD
5353

5454
public function matchesAccount(SEPAAccount $account): bool
5555
{
56-
if (!is_null($this->iban)) return $this->iban == $account->getIban();
56+
if (!is_null($this->iban)) {
57+
return $this->iban == $account->getIban();
58+
}
5759
// Sparkasse (Koblenz) does not provide an IBAN in this segment, fall back to kontonummer:
5860
return !is_null($this->kontoverbindung->kontonummer) && $this->kontoverbindung->kontonummer == $account->getAccountNumber();
5961
}

0 commit comments

Comments
 (0)