Additional change for 2.5 ProgressBar support

getProgress() is not available and getStep() throws a deprecation warning.
This commit is contained in:
Tim Nagel 2015-02-06 23:50:39 +11:00
parent 72589f8341
commit 797d066286

View file

@ -170,7 +170,7 @@ class PopulateCommand extends ContainerAwareCommand
$progress->setMessage(sprintf('<info>Populating</info> <comment>%s/%s</comment>', $index, $type));
$progress->advance($increment);
if ($progress->getProgress() >= $progress->getMaxSteps()) {
if ($progress->getProgressPercent() >= 1.0) {
$progress->finish();
}
};