how exactly are you calling the methods?
if you instantiate a class, then you call a method like:
$theClass->theMethodName()
or if you are calling a method from super class in a subclass you simply do:
$this->methodInSuperClass()
which is same for calling a method in same class i.e.
$this->methodInSameClass()