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
class A {
publicfunctiontest(){}
}
class B extends A {
publicfunctiontest(){
parent::test();
}
}
does result in an endless recursion as method proxies are prone to the override mechanism.
Therefor the parent original implementation never gets called as the parent proxy does call the child original method instead.
The text was updated successfully, but these errors were encountered:
A constellation such as:
does result in an endless recursion as method proxies are prone to the override mechanism.
Therefor the parent original implementation never gets called as the parent proxy does call the child original method instead.
The text was updated successfully, but these errors were encountered: