whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
veewee
/
xml
/
src
/
Xml
/
Reader
/
Matcher
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/veewee/xml/src/Xml/Reader/Matcher/all.php
<?php declare(strict_types=1); namespace VeeWee\Xml\Reader\Matcher; use Closure; use Psl\Iter; use VeeWee\Xml\Reader\Node\NodeSequence; /** * @param list<callable(NodeSequence): bool> $matchers * * @return Closure(NodeSequence): bool */ function all(callable ... $matchers): Closure { return static fn (NodeSequence $sequence): bool => Iter\all( $matchers, /** * @param callable(NodeSequence): bool $matcher */ static fn (callable $matcher): bool => $matcher($sequence) ); }
Copyright ©2021 || Defacer Indonesia