Skip to content

Commit

Permalink
fix native method fetch (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Aug 2, 2021
1 parent 23bf1ca commit 2e7256b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private function getParentClassMethod(ClassMethod $classMethod): ?MethodReflecti
continue;
}

if (! $parentClassReflection->hasMethod($methodName)) {
if (! $parentClassReflection->hasNativeMethod($methodName)) {
continue;
}

Expand Down

0 comments on commit 2e7256b

Please sign in to comment.