whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
veewee
/
xml
/
src
/
Xml
/
Dom
/
Manipulator
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/veewee/xml/src/Xml/Dom/Manipulator/append.php
<?php declare(strict_types=1); namespace VeeWee\Xml\Dom\Manipulator; use Closure; use DOMNode; use VeeWee\Xml\Exception\RuntimeException; use function VeeWee\Xml\ErrorHandling\disallow_issues; /** * @no-named-arguments * @throws RuntimeException * @return Closure(DOMNode): DOMNode */ function append(DOMNode ... $nodes): Closure { return static fn (DOMNode $target): DOMNode => disallow_issues( static function () use ($target, $nodes) { foreach ($nodes as $node) { $target->appendChild($node); } return $target; } ); }
Copyright ©2021 || Defacer Indonesia