hello,
i have a sourcecode like this:
class A
{
protected function f()
{
// do sth.
}
}
class B extends A
{
protected function f()
{
parent::f();
// do sth.
}
}
class C extends B
{
protected function f()
{
// do sth.
}
}
in class C i want to call method f() of class A only( not B ),
inheriting from A directly wont go, because there are several methods of B that i need in C
do you know a way to call parent :: parent :: f() only???
thanks in advance