/opt/cpanel/ea-wappspector/vendor/rector/rector/src/Skipper/Skipper
Edit: /opt/cpanel/ea-wappspector/vendor/rector/rector/src/Skipper/Skipper/PathSkipper.php (913B)
fileInfoMatcher = $fileInfoMatcher;
$this->skippedPathsResolver = $skippedPathsResolver;
}
public function shouldSkip(string $filePath) : bool
{
$skippedPaths = $this->skippedPathsResolver->resolve();
return $this->fileInfoMatcher->doesFileInfoMatchPatterns($filePath, $skippedPaths);
}
}