Exemple #1
0
 public function readResponse(Predis_Command $command)
 {
     $response = $this->_reader->read($this);
     $skipparse = isset($response->queued) || isset($response->error);
     return $skipparse ? $response : $command->parseResponse($response);
 }
Exemple #2
0
 public function readResponse(Predis_Command $command)
 {
     $response = $this->_reader->read($this);
     return isset($response->skipParse) ? $response : $command->parseResponse($response);
 }