whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
veewee
/
xml
/
src
/
Xml
/
Writer
/
Configurator
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/veewee/xml/src/Xml/Writer/Configurator/open.php
<?php declare(strict_types=1); namespace VeeWee\Xml\Writer\Configurator; use Closure; use XMLWriter; use function VeeWee\Xml\ErrorHandling\disallow_issues; use function VeeWee\Xml\ErrorHandling\disallow_libxml_false_returns; /** * @param callable(XMLWriter): bool $opener * @return Closure(XMLWriter): XMLWriter */ function open(callable $opener): Closure { return static fn (XMLWriter $writer): XMLWriter => disallow_issues( static function () use ($writer, $opener): XMLWriter { disallow_libxml_false_returns( $opener($writer), 'Could not open the writer stream.' ); return $writer; } ); }
Copyright ©2021 || Defacer Indonesia