The progress bar component For Hyperf.
composer require friendsofhyperf/console-spinner- Optional
php bin/hyperf.php vendor:publish friendsofhyperf/console-spinnerclass FooCommand extends Command
{
use Spinnerable;
/** * Execute the console command. * * @return void */publicfunctionhandle()
{
$spinner = $this->spinner($users->count());
$spinner->setMessage('Loading...');
$spinner->start();
foreach ($usersas$user) {
// Do your stuff...$spinner->advance();
}
$spinner->finish();
}
}The $spinner is compatible with Symfony ProgressBar, so you can run any method of this class.
Or you can also use with withSpinner method by giving an iterable.
$this->withSpinner(User::all(), function($user) {
// Do your stuff with $user
}, 'Loading...');