changing password prompt to be secret

This commit is contained in:
Brian 2022-09-01 12:46:09 -06:00
parent 0ff04a5ecd
commit b11660329b
Signed by: brian
GPG Key ID: DE1A5390A3B84CD8

View File

@ -40,7 +40,7 @@ class CreateUser extends Command
if (empty($password)) { if (empty($password)) {
// TODO: have a way to hide the input and do a confirm password input // TODO: have a way to hide the input and do a confirm password input
$password = $this->ask("Please provide a password"); $password = $this->secret("Please provide a password");
} }
try { try {