Updated Rector to commit 9e39db80cf2a763ae6006b3747feb69d82ade52d

9e39db80cf [DeadCode] Skip has parent class with __call() magic method on RemoveParentCallWithoutParentRector (#5336)
This commit is contained in:
Tomas Votruba 2023-12-07 04:38:08 +00:00
parent e7bdaa4244
commit 9e3e9b62ed
2 changed files with 5 additions and 2 deletions

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'b6f53b95e8a0ced2dd8197f9c46640ee9010a63b';
public const PACKAGE_VERSION = '9e39db80cf2a763ae6006b3747feb69d82ade52d';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-12-07 00:02:51';
public const RELEASE_DATE = '2023-12-07 11:35:49';
/**
* @var int
*/

View File

@ -53,6 +53,9 @@ final class ClassMethodManipulator
if ($parentClassReflection->hasMethod($methodName)) {
return \true;
}
if ($parentClassReflection->hasMethod(MethodName::CALL)) {
return \true;
}
}
foreach ($classReflection->getInterfaces() as $interfaceReflection) {
if ($interfaceReflection->hasMethod($methodName)) {