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

__construct() public method

Create a new queue listen command.
public __construct ( Worker $worker ) : void
$worker Illuminate\Queue\Worker
return void
    public function __construct(Worker $worker)
    {
        parent::__construct();
        $this->worker = $worker;
    }