public function OutputStyle::createProgressBar in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/console/Style/OutputStyle.php \Symfony\Component\Console\Style\OutputStyle::createProgressBar()
Parameters
int $max:
Return value
1 call to OutputStyle::createProgressBar()
- SymfonyStyle::createProgressBar in vendor/
symfony/ console/ Style/ SymfonyStyle.php
1 method overrides OutputStyle::createProgressBar()
- SymfonyStyle::createProgressBar in vendor/
symfony/ console/ Style/ SymfonyStyle.php
File
- vendor/
symfony/ console/ Style/ OutputStyle.php, line 48
Class
- OutputStyle
- Decorates output to add console style guide helpers.
Namespace
Symfony\Component\Console\StyleCode
public function createProgressBar($max = 0) {
return new ProgressBar($this->output, $max);
}