| 1 | <?php |
||
| 7 | class DomDocumentHandler extends AbstractDomDocumentHandler |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @param \DOMNode $node |
||
| 11 | * @param \WsdlToPhp\DomHandler\AbstractDomDocumentHandler $domDocument |
||
| 12 | * @param int $index |
||
| 13 | * @return NodeHandler |
||
| 14 | * @see \WsdlToPhp\DomHandler\AbstractDomDocumentHandler::getNodeHandler() |
||
| 15 | */ |
||
| 16 | 88 | protected function getNodeHandler(\DOMNode $node, AbstractDomDocumentHandler $domDocument, $index = -1) |
|
| 20 | /** |
||
| 21 | * @param \DOMElement $element |
||
| 22 | * @param \WsdlToPhp\DomHandler\AbstractDomDocumentHandler $domDocument |
||
| 23 | * @param int $index |
||
| 24 | * @return ElementHandler |
||
| 25 | * @see \WsdlToPhp\DomHandler\AbstractDomDocumentHandler::getNodeHandler() |
||
| 26 | */ |
||
| 27 | 148 | protected function getElementHandler(\DOMElement $element, AbstractDomDocumentHandler $domDocument, $index = -1) |
|
| 31 | /** |
||
| 32 | * @param \DOMAttr $attribute |
||
| 33 | * @param \WsdlToPhp\DomHandler\AbstractDomDocumentHandler $domDocument |
||
| 34 | * @param int $index |
||
| 35 | * @return AttributeHandler |
||
| 36 | * @see \WsdlToPhp\DomHandler\AbstractDomDocumentHandler::getAttributeHandler() |
||
| 37 | */ |
||
| 38 | 92 | protected function getAttributeHandler(\DOMAttr $attribute, AbstractDomDocumentHandler $domDocument, $index = -1) |
|
| 42 | /** |
||
| 43 | * @return ElementHandler |
||
| 44 | */ |
||
| 45 | 28 | public function getRootElement() |
|
| 49 | } |
||
| 50 |