<?php class A{ # ... properties & methods # then we have targetFunc() protected static function grandparentFn(){ // some action } } class B extends A{ protected static function parentFn(){ // some action } } class C extends B{ } //C::parentFn(); // it fails .... (expected, due to protected) C::grandparentFn(); // it works .... ????
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`