Explorar el Código

Remove the method Predis\Network\TcpConnection::rawCommand().

Daniele Alessandri hace 15 años
padre
commit
014adfe75d
Se han modificado 1 ficheros con 0 adiciones y 5 borrados
  1. 0 5
      lib/Predis.php

+ 0 - 5
lib/Predis.php

@@ -1319,11 +1319,6 @@ class TcpConnection extends ConnectionBase implements IConnectionSingle {
         return $skipparse ? $response : $command->parseResponse($response);
     }
 
-    public function rawCommand($buffer) {
-        $this->writeBytes($buffer);
-        return $this->_protocol->read($this);
-    }
-
     public function writeBytes($value) {
         $socket = $this->getResource();
         while (($length = strlen($value)) > 0) {