44                 return !empty($this->call);
    60                 $this->call = array();
    69                 foreach($calls as $c) {
    70                         call_user_func_array(array($this->
response, $c[0]), $c[1]);
    75                 return $this->
response->getAttr($name);
    79                 $this->call[] = array(
'setAttr', array($name, $value));
    80                 $this->
response->setAttr($name, $value);
    81                 parent::setAttr($name, $value);
    91         public function __call($name, $prm) {
    92                 if (!$this->isResponseProxy && substr($name, 0, 3) != 
'get')
    93                         $this->call[] = array($name, $prm);
    94                 return call_user_func_array(array($this->
response, $name), $prm);