startProgress() public static method
Starts display of a progress bar on screen. This bar will be updated by updateProgress() and my be ended by endProgress(). The following example shows a simple usage of a progress bar: Console::startProgress(0, 1000);
for ($n = 1; $n <= 1000; $n++) {
usleep(1000);
Console::updateProgress($n, 1000);
}
Console::endProgress();
Git clone like progress (showing only status information): `php Console::startProgress(0, 1000, 'Counting objects: ', fa