Skip to content

Commit

Permalink
Updated Rector to commit 393423fd3c87f1e915f252f8316f1616b623c320
Browse files Browse the repository at this point in the history
rectorphp/rector-src@393423f always make paths absolute before processing files (#6293)
  • Loading branch information
TomasVotruba committed Sep 8, 2024
1 parent f11e9d2 commit 09d8db0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Application/VersionResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'a4545b6fccbc6698fadce47a8454ce3acebf97ac';
public const PACKAGE_VERSION = '393423fd3c87f1e915f252f8316f1616b623c320';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-09-08 00:32:51';
public const RELEASE_DATE = '2024-09-08 01:36:56';
/**
* @var int
*/
Expand Down
3 changes: 3 additions & 0 deletions src/FileSystem/FilesFinder.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ public function findInDirectoriesAndFiles(array $source, array $suffixes = [], b
$filesAndDirectories = $this->filesystemTweaker->resolveWithFnmatch($source);
// filtering files in files collection
$filteredFilePaths = $this->fileAndDirectoryFilter->filterFiles($filesAndDirectories);
$filteredFilePaths = \array_map(function (string $filePath) : string {
return \realpath($filePath);
}, $filteredFilePaths);
$filteredFilePaths = \array_filter($filteredFilePaths, function (string $filePath) : bool {
return !$this->pathSkipper->shouldSkip($filePath);
});
Expand Down

0 comments on commit 09d8db0

Please sign in to comment.