Skip to content

Commit 4924188

Browse files
committed
Code style fixes
1 parent ca2777c commit 4924188

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Helper/Iban.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ private static function mod97(string $number): int
121121
$parts = \str_split($number, 7);
122122
$rest = 0;
123123
foreach ($parts as $part) {
124-
$rest = ((int)($rest . $part)) % 97;
124+
$rest = (int)($rest . $part) % 97;
125125
}
126126
return (int)$rest;
127127
}

0 commit comments

Comments
 (0)