Illuminate\Queue\Console\WorkCommand::gatherWorkerOptions PHP Method

gatherWorkerOptions() protected method

Gather all of the queue worker options as a single object.
protected gatherWorkerOptions ( ) : WorkerOptions
return Illuminate\Queue\WorkerOptions
    protected function gatherWorkerOptions()
    {
        return new WorkerOptions($this->option('delay'), $this->option('memory'), $this->option('timeout'), $this->option('sleep'), $this->option('tries'), $this->option('force'));
    }