ApaiIO\Operations\Lookup::getSearchIndex PHP Метод

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

Returns the searchindex
public getSearchIndex ( ) : mixed
Результат mixed
    public function getSearchIndex()
    {
        return $this->getSingleOperationParameter('SearchIndex');
    }

Usage Example

Пример #1
0
 public function testGetSearchIndex()
 {
     $lookup = new Lookup();
     $this->assertEquals(null, $lookup->getSearchIndex());
     $lookup->setSearchIndex('Appliances');
     $this->assertEquals('Appliances', $lookup->getSearchIndex());
 }