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

ask() public method

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