function ProgressBar::display
Outputs the current progress string.
2 calls to ProgressBar::display()
- ProgressBar::setProgress in vendor/
symfony/ console/ Helper/ ProgressBar.php - ProgressBar::start in vendor/
symfony/ console/ Helper/ ProgressBar.php - Starts the progress output.
File
-
vendor/
symfony/ console/ Helper/ ProgressBar.php, line 455
Class
- ProgressBar
- The ProgressBar provides helpers to display progress output.
Namespace
Symfony\Component\Console\HelperCode
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());
}