You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?phpclass A { publicfunctionc() { return1; } }
class B { publicfunctionc() { return2; } }
functiontest($a) {
if ($ainstanceof A || $ainstanceof B) {
echo$a->c();
}
}
Actual Behavior
Call to undefined method {mixed}->c();
Expected Behavior
No errors.
The text was updated successfully, but these errors were encountered:
Code Example
Actual Behavior
Call to undefined method {mixed}->c();
Expected Behavior
No errors.
The text was updated successfully, but these errors were encountered: