We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca5fe1b commit ef27985Copy full SHA for ef27985
src/Generator/Password.php
@@ -21,7 +21,7 @@ public static function generate(int $length = self::DEFAULT_LENGTH, bool $specia
21
$keys = array_merge(
22
range(0, 9),
23
range('a', 'z'),
24
- range('Z', 'Z'),
+ range('A', 'Z'),
25
$specialCharacters ? self::SPECIAL_CHARACTERS : []
26
);
27
$endKeysIndex = count($keys) - 1;
0 commit comments