Crunz\Console\Command\TaskGeneratorCommand::ask PHP Method

ask() protected method

Ask a question
protected ask ( $question ) : string
return string
    protected function ask($question)
    {
        $helper = $this->getHelper('question');
        $question = new Question("<question>{$question}</question>");
        return $helper->ask($this->input, $this->output, $question);
    }