Barryvdh\Queue\Console\AsyncCommand::fire PHP Method

fire() public method

Execute the console command.
public fire ( WorkerOptions $options ) : void
$options Illuminate\Queue\WorkerOptions
return void
    public function fire(WorkerOptions $options)
    {
        $id = $this->argument('id');
        $connection = $this->argument('connection');
        $this->processJob($connection, $id, $options);
    }