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/remove.php
<?php declare(strict_types=1); namespace VeeWee\Xml\Dom\Manipulator\Node; use DOMNode; use VeeWee\Xml\Exception\RuntimeException; use function VeeWee\Xml\Dom\Locator\Element\parent_element; use function VeeWee\Xml\Dom\Predicate\is_attribute; use function VeeWee\Xml\ErrorHandling\disallow_issues; use function VeeWee\Xml\ErrorHandling\disallow_libxml_false_returns; /** * @throws RuntimeException */ function remove(DOMNode $target): DOMNode { return disallow_issues( /** * @throws RuntimeException */ static function () use ($target): DOMNode { $parent = parent_element($target); if (is_attribute($target)) { disallow_libxml_false_returns( $parent->removeAttributeNode($target), 'Could not remove attribute from dom element' ); return $target; } return $parent->removeChild($target); } ); }
Copyright ©2021 || Defacer Indonesia