mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-19 14:27:14 +01:00
Updated Rector to commit 9e39db80cf2a763ae6006b3747feb69d82ade52d
9e39db80cf
[DeadCode] Skip has parent class with __call() magic method on RemoveParentCallWithoutParentRector (#5336)
This commit is contained in:
parent
e7bdaa4244
commit
9e3e9b62ed
@ -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
|
||||
*/
|
||||
|
@ -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)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user