File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,10 @@ public function getPrototype(): ClassMemberReflection
72
72
$ prototypeDeclaringClass = $ this ->reflectionProvider ->getClass ($ prototypeMethod ->getDeclaringClass ()->getName ());
73
73
}
74
74
75
+ if (!$ prototypeDeclaringClass ->hasNativeMethod ($ prototypeMethod ->getName ())) {
76
+ return $ this ;
77
+ }
78
+
75
79
$ tentativeReturnType = null ;
76
80
if ($ prototypeMethod ->getTentativeReturnType () !== null ) {
77
81
$ tentativeReturnType = TypehintHelper::decideTypeFromReflection ($ prototypeMethod ->getTentativeReturnType ());
Original file line number Diff line number Diff line change @@ -115,6 +115,10 @@ public function getPrototype(): ClassMemberReflection
115
115
$ prototypeDeclaringClass = $ this ->reflectionProvider ->getClass ($ prototypeMethod ->getDeclaringClass ()->getName ());
116
116
}
117
117
118
+ if (!$ prototypeDeclaringClass ->hasNativeMethod ($ prototypeMethod ->getName ())) {
119
+ return $ this ;
120
+ }
121
+
118
122
$ tentativeReturnType = null ;
119
123
if ($ prototypeMethod ->getTentativeReturnType () !== null ) {
120
124
$ tentativeReturnType = TypehintHelper::decideTypeFromReflection ($ prototypeMethod ->getTentativeReturnType ());
You can’t perform that action at this time.
0 commit comments