whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
veewee
/
xml
/
src
/
Xml
/
Dom
/
Manipulator
/
Node
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/veewee/xml/src/Xml/Dom/Manipulator/Node/rename.php
<?php declare(strict_types=1); namespace VeeWee\Xml\Dom\Manipulator\Node; use DOMNode; use VeeWee\Xml\Exception\RuntimeException; use function VeeWee\Xml\Dom\Manipulator\Attribute\rename as rename_attribute; use function VeeWee\Xml\Dom\Manipulator\Element\rename as rename_element; use function VeeWee\Xml\Dom\Predicate\is_attribute; use function VeeWee\Xml\Dom\Predicate\is_element; /** * @see https://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-renameNode * * @throws RuntimeException */ function rename(DOMNode $target, string $newQName, ?string $newNamespaceURI = null): DOMNode { if (is_attribute($target)) { return rename_attribute($target, $newQName, $newNamespaceURI); } if (is_element($target)) { return rename_element($target, $newQName, $newNamespaceURI); } throw RuntimeException::withMessage('Can not rename dom node with type ' . get_class($target)); }
Copyright ©2021 || Defacer Indonesia