Skip to content

Commit

Permalink
Updated Rector to commit 3e2e579e4753ac559fa1c075ea51b1c5df86532e
Browse files Browse the repository at this point in the history
rectorphp/rector-src@3e2e579 📦 Ignore `.phpstorm.meta.php` because this is not PHP file (#6594)
  • Loading branch information
TomasVotruba committed Dec 16, 2024
1 parent 0dbd7f4 commit 7bf0acd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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 = '967e983203f45c47ca154df85d47f08f54b5cafb';
public const PACKAGE_VERSION = '3e2e579e4753ac559fa1c075ea51b1c5df86532e';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-12-15 19:15:41';
public const RELEASE_DATE = '2024-12-16 18:36:47';
/**
* @var int
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Configuration/RectorConfigBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ public function withRootFiles() : self
return \realpath($string);
}, $gitIgnoreContents);
}
$rootPhpFilesFinder = (new Finder())->files()->in(\getcwd())->depth(0)->ignoreDotFiles(\false)->name('*.php')->name('.*.php');
$rootPhpFilesFinder = (new Finder())->files()->in(\getcwd())->depth(0)->ignoreDotFiles(\false)->name('*.php')->name('.*.php')->notName('.phpstorm.meta.php');
foreach ($rootPhpFilesFinder as $rootPhpFileFinder) {
$path = $rootPhpFileFinder->getRealPath();
if (\in_array($path, $gitIgnoreContents, \true)) {
Expand Down

0 comments on commit 7bf0acd

Please sign in to comment.