소스 검색

Make Predis\Command::serializeRequest() a protected method.

Daniele Alessandri 15 년 전
부모
커밋
6ea96e82f9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/Predis.php

+ 1 - 1
lib/Predis.php

@@ -433,7 +433,7 @@ abstract class Command {
 
     public abstract function getCommandId();
 
-    public function serializeRequest($command, $arguments) {
+    protected function serializeRequest($command, $arguments) {
         $newline = Protocol::NEWLINE;
         $cmdlen  = strlen($command);
         $reqlen  = count($arguments) + 1;