Skip to content

Commit 5b275dd

Browse files
committed
Consistency: Keep same coding style with var prefix
1 parent 18197cc commit 5b275dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Generator/Password.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static function generate(int $length = self::DEFAULT_LENGTH, bool $specia
2424
$specialCharacters ? self::SPECIAL_CHARACTERS : []
2525
);
2626

27-
for ($iAmount = 0; $iAmount < $length; $iAmount++) {
27+
for ($amount = 0; $amount < $length; $amount++) {
2828
$password .= $keys[array_rand($keys)];
2929
}
3030

0 commit comments

Comments
 (0)