Pārlūkot izejas kodu

Fix wrong class lookup.

Daniele Alessandri 14 gadi atpakaļ
vecāks
revīzija
03cff6a813
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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);
     }
 }