Controller_Data_Dumper::__call PHP Метод

__call() публичный Метод

}}}
public __call ( $method, $args )
    public function __call($method, $args)
    {
        $this->log($method, $args, true);
        if ($this->watchedController) {
            $ret = call_user_func_array(array($this->watchedController, $method), $args);
            $this->log($method, array($ret), false);
        } else {
            $ret = null;
        }
        return $ret;
    }