getSearchIndex() 공개 메소드

Returns the searchindex
public getSearchIndex ( ) : mixed
리턴 mixed
예제 #1
0
파일: LookupTest.php 프로젝트: exeu/apai-io
 public function testGetSearchIndex()
 {
     $lookup = new Lookup();
     $this->assertEquals(null, $lookup->getSearchIndex());
     $lookup->setSearchIndex('Appliances');
     $this->assertEquals('Appliances', $lookup->getSearchIndex());
 }