Cake\ElasticSearch\FilterBuilder::type PHP 메소드

type() 공개 메소드

### Example: {{{ $builder->type('products'); }}}
또한 보기: 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
리턴 Elastica\Filter\Type
    public function type($type)
    {
        return new Filter\Type($type);
    }