whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
veewee
/
xml
/
src
/
Xml
/
Encoding
/
Internal
/
Encoder
/
Builder
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/veewee/xml/src/Xml/Encoding/Internal/Encoder/Builder/root.php
<?php declare(strict_types=1); namespace VeeWee\Xml\Encoding\Internal\Encoder\Builder; use Closure; use DOMDocument; use DOMNode; use Psl\Exception\InvariantViolationException; use VeeWee\Xml\Encoding\Exception\EncodingException; use function Psl\Dict\map_with_key; use function VeeWee\Xml\Dom\Builder\nodes; /** * @psalm-internal VeeWee\Xml\Encoding * @return Closure(DOMDocument): list<DOMNode> * * @throws EncodingException * @throws InvariantViolationException */ function root(array $data): Closure { if (is_node_list($data)) { throw EncodingException::invalidRoot('list'); } return nodes( ...map_with_key( $data, static fn (string $key, array|string $value): Closure => parent_node($key, $value) ) ); }
Copyright ©2021 || Defacer Indonesia