Skip to content

Commit 283479c

Browse files
authored
Merge pull request #96 from omarkdev/fix-cs-renavam
Corrige estilo de código na classe do Renavam
2 parents fc87b46 + b99c346 commit 283479c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/validator-docs/Rules/Renavam.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public function validateRenavam($attribute, $renavam): bool
1111
$renavamArray = str_split($renavam);
1212
$digitCount = 0;
1313

14-
for ($i=5; $i >= 2; $i--) {
14+
for ($i = 5; $i >= 2; $i--) {
1515
$sum += $renavamArray[$digitCount] * $i;
1616
$digitCount++;
1717
}
@@ -30,4 +30,4 @@ public function validateRenavam($attribute, $renavam): bool
3030

3131
return false;
3232
}
33-
}
33+
}

0 commit comments

Comments
 (0)