setType() public method

Set type.
public setType ( array | string | Type $type )
$type array | string | Elastica\Type Type name or object
示例#1
0
 /**
  * @group functional
  */
 public function testSetTypeArraySearchSingle()
 {
     $query = new Ids();
     $query->setIds('4');
     $query->setType(array('helloworld1', 'helloworld2'));
     $resultSet = $this->_index->search($query);
     $this->assertEquals(1, $resultSet->count());
 }