getSearchIndex() публичный Метод

Returns the searchindex
public getSearchIndex ( ) : mixed
Результат mixed
Пример #1
0
 public function testGetSearchIndex()
 {
     $lookup = new Lookup();
     $this->assertEquals(null, $lookup->getSearchIndex());
     $lookup->setSearchIndex('Appliances');
     $this->assertEquals('Appliances', $lookup->getSearchIndex());
 }