Quellcode durchsuchen

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

Daniele Alessandri vor 15 Jahren
Ursprung
Commit
014adfe75d
1 geänderte Dateien mit 0 neuen und 5 gelöschten Zeilen
  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) {