Browse Source

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

Daniele Alessandri 14 years ago
parent
commit
014adfe75d
1 changed files with 0 additions and 5 deletions
  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) {