diff --git a/src/Generator/Password.php b/src/Generator/Password.php index 56cec6b..7945649 100644 --- a/src/Generator/Password.php +++ b/src/Generator/Password.php @@ -21,7 +21,7 @@ public static function generate(int $length = self::DEFAULT_LENGTH, bool $specia $keys = array_merge( range(0, 9), range('a', 'z'), - range('Z', 'Z'), + range('A', 'Z'), $specialCharacters ? self::SPECIAL_CHARACTERS : [] ); $endKeysIndex = count($keys) - 1;