I'm not quite sure what you are asking ... do you want to explicitly call the magic methods of the parent class? If so, you can use the class reference parent:
class Object extends dbObj{
public function __call($method, $variables){
return parent::__call($method, $variables);
}
}
source
share