Cake\ElasticSearch\FilterBuilder::type PHP Méthode

type() public méthode

### Example: {{{ $builder->type('products'); }}}
See also: http://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-type-filter.html
public type ( string $type ) : Elastica\Filter\Type
$type string The type name
Résultat Elastica\Filter\Type
    public function type($type)
    {
        return new Filter\Type($type);
    }