PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
src
/
Util
<?php declare (strict_types=1); namespace Rector\Util; final class ArrayChecker { /** * @param mixed[] $elements * @param callable(mixed $element): bool $callable */ public function doesExist(array $elements, callable $callable) : bool { foreach ($elements as $element) { $isFound = $callable($element); if ($isFound) { return \true; } } return \false; } }
[-] ArrayParametersMerger.php
[edit]
[-] NewLineSplitter.php
[edit]
[+]
..
[-] StringUtils.php
[edit]
[-] PhpVersionFactory.php
[edit]
[-] ArrayChecker.php
[edit]
[-] NodePrinter.php
[edit]
[-] MemoryLimiter.php
[edit]
[+]
Reflection
[-] FileHasher.php
[edit]