public function SymfonyStyle::progressAdvance in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Style/SymfonyStyle.php \Symfony\Component\Console\Style\SymfonyStyle::progressAdvance()
Advances the progress output X steps.
Parameters
int $step Number of steps to advance:
Overrides StyleInterface::progressAdvance
File
- vendor/
symfony/ console/ Style/ SymfonyStyle.php, line 275
Class
- SymfonyStyle
- Output decorator helpers for the Symfony Style Guide.
Namespace
Symfony\Component\Console\StyleCode
public function progressAdvance($step = 1) {
$this
->getProgressBar()
->advance($step);
}