Cake\ElasticSearch\FilterBuilder::type PHP Method

type() public method

### 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
return Elastica\Filter\Type
    public function type($type)
    {
        return new Filter\Type($type);
    }