/opt/cpanel/ea-wappspector/vendor/rector/rector/src/FileSystem
NameSizeModeActions
FileAndDirectoryFilter.php9580644editdlrm
FilePathHelper.php35960644editdlrm
FilesFinder.php62450644editdlrm
FilesystemTweaker.php10500644editdlrm
InitFilePathsResolver.php15990644editdlrm
JsonFileSystem.php6550644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/rector/rector/src/FileSystem/FilesystemTweaker.php (1050B)
foundInGlob($path); $absolutePathsFound = \array_merge($absolutePathsFound, $foundPaths); } else { $absolutePathsFound[] = $path; } } return $absolutePathsFound; } /** * @return string[] */ private function foundInGlob(string $path) : array { /** @var string[] $paths */ $paths = (array) \glob($path); return \array_filter($paths, static function (string $path) : bool { return \file_exists($path); }); } }