$this->
autoPrependBlock();
} $this->questionHelper ??=
new SymfonyQuestionHelper();
$answer =
$this->questionHelper->
ask($this->input,
$this,
$question);
if ($this->input->
isInteractive()) { if ($this->output instanceof ConsoleSectionOutput
) { // add the new line of the `return` to submit the input to ConsoleSectionOutput, because ConsoleSectionOutput is holding all it's lines.
// this is relevant when a `ConsoleSectionOutput::clear` is called.
$this->output->
addNewLineOfInputSubmit();
} $this->
newLine();
$this->bufferedOutput->
write("\n"
);
} return $answer;
} /**
* @return void
*/