class A{
function a(){
}
}
class B extends A{
static function b(){
parent::a(); /* this gave me a php warning: a() should not be called statically */
}
}
Any Comment?
Note: I know that become class A in static will be fix the issue, but I don't want to.