Updated Rector to commit 2d1f468bc6e41bc84dc273c8ac94033b60761a76

2d1f468bc6 [Privatization] Skip with suffix "TestCase" on FinalizeTestCaseClassRector (#5660)
This commit is contained in:
Tomas Votruba 2024-02-23 13:06:33 +00:00
parent 94501442a5
commit dcd788c4dd
2 changed files with 5 additions and 2 deletions

View File

@ -69,6 +69,9 @@ CODE_SAMPLE
if (!\is_string($className)) {
return null;
}
if (\substr_compare($className, 'TestCase', -\strlen('TestCase')) === 0) {
return null;
}
if (!$this->reflectionProvider->hasClass($className)) {
return null;
}

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'd754bec5f11ce2d37928901c6998e1cc62e6f20d';
public const PACKAGE_VERSION = '2d1f468bc6e41bc84dc273c8ac94033b60761a76';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-02-23 17:00:56';
public const RELEASE_DATE = '2024-02-23 20:04:16';
/**
* @var int
*/