WSDL\Builder\Parameter::getNode PHP Method

getNode() public method

public getNode ( ) : Node
return WSDL\Parser\Node
    public function getNode()
    {
        return $this->node;
    }

Usage Example

 /**
  * @inheritdoc
  */
 public function generateSoapHeaderIfNeeded(DOMDocument $DOMDocument, $targetNamespace, $soapHeaderMessage = '', Parameter $header = null, $soapVersion)
 {
     if ($header) {
         return XMLAttributeHelper::forDOM($DOMDocument)->createElementWithAttributes($soapVersion . ':header', array('use' => 'encoded', 'namespace' => $targetNamespace, 'encodingStyle' => 'http://schemas.xmlsoap.org/soap/encoding/', 'part' => $header->getNode()->getSanitizedName(), 'message' => $soapHeaderMessage));
     }
     return null;
 }
All Usage Examples Of WSDL\Builder\Parameter::getNode