whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Type
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Type/union.php
<?php declare(strict_types=1); namespace Psl\Type; /** * @template T * * @param TypeInterface<T> $first * @param TypeInterface<T> $second * @param TypeInterface<T> ...$rest * * @return TypeInterface<T> */ function union( TypeInterface $first, TypeInterface $second, TypeInterface ...$rest ): TypeInterface { $accumulated_type = new Internal\UnionType($first, $second); foreach ($rest as $type) { $accumulated_type = new Internal\UnionType($accumulated_type, $type); } return $accumulated_type; }
Copyright ©2021 || Defacer Indonesia