Exemplo n.º 1
0
 public function execute()
 {
     foreach ($this->queue as $call) {
         call_user_func_array(array($this->socket, $call['method']), $call['args']);
     }
     $ret = array();
     foreach ($this->queue as $call) {
         $ret[] = call_user_func($call['callback'], $this->socket->readResponse());
     }
     return $ret;
 }