mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 05:48:21 +01:00
Updated Rector to commit 2d1f468bc6e41bc84dc273c8ac94033b60761a76
2d1f468bc6
[Privatization] Skip with suffix "TestCase" on FinalizeTestCaseClassRector (#5660)
This commit is contained in:
parent
94501442a5
commit
dcd788c4dd
@ -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;
|
||||
}
|
||||
|
@ -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
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user