mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
433 B
433 B
date | id | title |
---|---|---|
2020-11-12 | b4fc3714-24f9-4eb6-9d46-3c42bdcd5be2 | Symfony Console Iterable Progress Bars |
Changes
Syntax
use Symfony\Component\Console\Helper\ProgressBar;
$progressBar = new ProgressBar($output);
$progressBar->start();
// ... do some work
$progressBar->advance();
// needed to ensure that the bar reaches 100%
$progressBar->finish();