elseif ($saltlessWithoutEmptySalt) { $errorIo->
note('Self-salting hasher used: the hasher generated its own built-in salt.'
);
} $errorIo->
success('Password hashing succeeded'
);
return 0;
} public function complete(CompletionInput
$input, CompletionSuggestions
$suggestions): void
{ if ($input->
mustSuggestArgumentValuesFor('user-class'
)) { $suggestions->
suggestValues($this->userClasses
);
return;
} } /**
* Create the password question to ask the user for the password to be hashed.
*/
private function createPasswordQuestion(): Question
{