فهرست منبع

Fix strict notice for undefined property during tests.

Daniele Alessandri 11 سال پیش
والد
کامیت
0128ecc623
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      lib/Predis/Iterator/MultiBulkResponseSimple.php

+ 1 - 1
lib/Predis/Iterator/MultiBulkResponseSimple.php

@@ -55,7 +55,7 @@ class MultiBulkResponseSimple extends MultiBulkResponse
     {
         if ($disconnect) {
             if ($this->valid()) {
-                $this->position = $this->replySize;
+                $this->position = $this->size;
                 $this->connection->disconnect();
             }
         } else {