LMongo\Query\Builder::andWhere PHP Method

andWhere() public method

Add an "$and logical operation" clause to the query.
public andWhere ( string $column, mixed $value = null ) : LMongo\Query\Builder
$column string
$value mixed
return LMongo\Query\Builder
    public function andWhere($column, $value = null)
    {
        return $this->where($column, $value, '$and');
    }
Builder