mirror of
https://github.com/rectorphp/rector.git
synced 2025-03-14 20:39:43 +01:00
Updated Rector to commit 3e2e579e4753ac559fa1c075ea51b1c5df86532e
3e2e579e47
📦 Ignore `.phpstorm.meta.php` because this is not PHP file (#6594)
This commit is contained in:
parent
0dbd7f432e
commit
7bf0acdccc
@ -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
|
||||
*/
|
||||
|
@ -298,7 +298,7 @@ final class RectorConfigBuilder
|
||||
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)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user