ソースを参照

Fix wrong class lookup.

Daniele Alessandri 14 年 前
コミット
03cff6a813
1 ファイル変更1 行追加1 行削除
  1. 1 1
      lib/Predis.php

+ 1 - 1
lib/Predis.php

@@ -1893,7 +1893,7 @@ class ResponseMultiBulkStreamHandler implements IResponseHandler {
                 $connection, "Cannot parse '$length' as data length"
             ));
         }
-        return new Iterators\MultiBulkResponseSimple($connection, $length);
+        return new MultiBulkResponseSimple($connection, $length);
     }
 }