Updated Rector to commit 5e213e66ed72dede6bb43315dbaa2c8d86d449c9

5e213e66ed Revert "Faster FileInfoMatcher (#5830)" (#5831)
This commit is contained in:
Tomas Votruba 2024-04-19 12:41:40 +00:00
parent e01fd7276e
commit 24418026e3
2 changed files with 2 additions and 6 deletions

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '38b3c20c5b36f1a821d3f38dfef63f547bb1b918';
public const PACKAGE_VERSION = '5e213e66ed72dede6bb43315dbaa2c8d86d449c9';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-04-19 18:46:00';
public const RELEASE_DATE = '2024-04-19 12:39:13';
/**
* @var int
*/

View File

@ -66,10 +66,6 @@ final class FileInfoMatcher
if ($this->fnmatcher->match($ignoredPath, $filePath)) {
return \true;
}
// realpathMatcher cannot resolve wildcards -> return early to prevent unnecessary IO
if (\strpos($ignoredPath, '*') !== \false) {
return \false;
}
return $this->realpathMatcher->match($ignoredPath, $filePath);
}
}