ApaiIO\Operations\BrowseNodeLookup::getNodeId PHP Method

getNodeId() public method

Returns the nodeid
public getNodeId ( ) : string
return string
    public function getNodeId()
    {
        return $this->getSingleOperationParameter('BrowseNodeId');
    }

Usage Example

Beispiel #1
0
 public function testGetBrowseNode()
 {
     $nodeLookup = new BrowseNodeLookup();
     $this->assertEquals(null, $nodeLookup->getNodeId());
     $nodeLookup->setNodeId(290060);
     $this->assertEquals(290060, $nodeLookup->getNodeId());
 }