Updated Rector to commit 8c52d614891043c1310fb120e0871b4183a33a53

8c52d61489 [CodingStyle] Skip anonymous class on MakeInheritedMethodVisibilitySameAsParentRector (#5688)
This commit is contained in:
Tomas Votruba 2024-03-04 21:33:44 +00:00
parent 9c449858d7
commit bd2820567f
2 changed files with 5 additions and 2 deletions

View File

@ -85,6 +85,9 @@ CODE_SAMPLE
if (!$classReflection instanceof ClassReflection) {
return null;
}
if ($classReflection->isAnonymous()) {
return null;
}
$parentClassReflections = $classReflection->getParents();
if ($parentClassReflections === []) {
return null;

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '7df4894bc7bd1bec704f8e428efb768d101e8984';
public const PACKAGE_VERSION = '8c52d614891043c1310fb120e0871b4183a33a53';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-03-05 00:12:12';
public const RELEASE_DATE = '2024-03-05 04:31:09';
/**
* @var int
*/