PHP code example of friendsofhyperf / console-spinner

1. Go to this page and download the library: Download friendsofhyperf/console-spinner library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

friendsofhyperf / console-spinner example snippets


class FooCommand extends Command
{
    use Spinnerable;

    /**
     * Execute the console command.
     *
     * @return void
     */
    public function handle()
    {
        $spinner = $this->spinner($users->count());
        $spinner->setMessage('Loading...');
        $spinner->start();
        
        foreach ($users as $user) {
            // Do your stuff...
            
            $spinner->advance();
        }

        $spinner->finish();
    }
}

$this->withSpinner(User::all(), function($user) {
    // Do your stuff with $user
}, 'Loading...');
shell
php bin/hyperf.php vendor:publish friendsofhyperf/console-spinner