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 c316229 commit 653c2a6Copy full SHA for 653c2a6
src/Util/PasswordGenerator.php
@@ -37,7 +37,7 @@ public function generateRandomPassword(int $length = 20) : string
37
while (true) {
38
$password = $this->generateRandomString($length);
39
/* http://docs.magento.com/m2/ee/user_guide/stores/admin-signin.html
40
- * An Admin password must be seven or more characters long, and include both letters and numbers.
+ * An Admin password must be seven or more characters long, and include both letters and numbers.
41
*/
42
if (( preg_match('/.*[A-Za-z].*/', $password) ) && ( preg_match('/.*[\d].*/', $password) )) {
43
return $password;
0 commit comments