Barryvdh\Queue\AsyncQueue::__construct PHP Method

__construct() public method

public __construct ( Connection $database, string $table, string $default = 'default', integer $expire = 60, string $binary = 'php', string | array $binaryArgs = '', $connectionName = '' )
$database Illuminate\Database\Connection
$table string
$default string
$expire integer
$binary string
$binaryArgs string | array
    public function __construct(Connection $database, $table, $default = 'default', $expire = 60, $binary = 'php', $binaryArgs = '', $connectionName = '')
    {
        parent::__construct($database, $table, $default, $expire);
        $this->binary = $binary;
        $this->binaryArgs = $binaryArgs;
        $this->connectionName = $connectionName;
    }