Laravel\Envoy\Console\Command::secret PHP Method

secret() public method

Ask the user the given secret question.
public secret ( string $question ) : string
$question string
return string
    public function secret($question)
    {
        $question = '<comment>' . $question . '</comment> ';
        $question = new Question($question);
        $question->setHidden(true);
        $question->setHiddenFallback(false);
        return $this->getHelperSet()->get('question')->ask($this->input, $this->output, $question);
    }