Smile\ElasticsuiteCore\Search\Request\Query\Missing::__construct PHP Method

__construct() public method

Constructor.
public __construct ( string $field, string $name = null, integer $boost = QueryInterface::DEFAULT_BOOST_VALUE )
$field string Query field.
$name string Query name.
$boost integer Query boost.
    public function __construct($field, $name = null, $boost = QueryInterface::DEFAULT_BOOST_VALUE)
    {
        $this->name = $name;
        $this->boost = $boost;
        $this->field = $field;
    }