Cake\ElasticSearch\FilterBuilder::lte PHP Метод

lte() публичный Метод

Returns a Range filter object setup to filter documents having the field smaller or equals than the provided value.
См. также: http://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-range-filter.html
public lte ( string $field, mixed $value ) : Elastica\Filter\Range
$field string The field to filter by.
$value mixed The value to compare with.
Результат Elastica\Filter\Range
    public function lte($field, $value)
    {
        return $this->range($field, ['lte' => $value]);
    }