Neos\Flow\Cli\ConsoleOutput::askHiddenResponse PHP Method

askHiddenResponse() public method

Asks a question to the user, the response is hidden
public askHiddenResponse ( string | array $question, boolean $fallback = true ) : string
$question string | array The question. If an array each array item is turned into one line of a multi-line question
$fallback boolean In case the response can not be hidden, whether to fallback on non-hidden question or not
return string The answer
    public function askHiddenResponse($question, $fallback = true)
    {
        return $this->getDialogHelper()->askHiddenResponse($this->output, $question, $fallback);
    }