ApaiIO\Operations\Lookup::getSearchIndex PHP Method

getSearchIndex() public method

Returns the searchindex
public getSearchIndex ( ) : mixed
return mixed
    public function getSearchIndex()
    {
        return $this->getSingleOperationParameter('SearchIndex');
    }

Usage Example

Exemplo n.º 1
0
 public function testGetSearchIndex()
 {
     $lookup = new Lookup();
     $this->assertEquals(null, $lookup->getSearchIndex());
     $lookup->setSearchIndex('Appliances');
     $this->assertEquals('Appliances', $lookup->getSearchIndex());
 }