/**
* Outputs the current progress string.
*/
public function display(): void
{ if (OutputInterface::VERBOSITY_QUIET ===
$this->output->
getVerbosity()) { return;
} if (null ===
$this->format
) { $this->
setRealFormat($this->internalFormat ?:
$this->
determineBestFormat());
} $this->
overwrite($this->
buildLine());
} /**
* Removes the progress bar from the current line.
*
* This is useful if you wish to write some output
* while a progress bar is running.
* Call display() to show the progress bar again.
*/