소스 검색

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

Daniele Alessandri 14 년 전
부모
커밋
014adfe75d
1개의 변경된 파일0개의 추가작업 그리고 5개의 파일을 삭제
  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) {