No need for strict comparison here.

Should be also slightly faster (at least on a micro-optimization scale).
This commit is contained in:
Daniele Alessandri
2013-02-16 11:13:26 +01:00
parent 76d6681f68
commit da343046e5
+1 -1
View File
@@ -249,7 +249,7 @@ class StreamConnection extends AbstractConnection
if ($count === -1) {
return null;
}
if ($this->mbiterable === true) {
if ($this->mbiterable) {
return new MultiBulkResponseSimple($this, $count);
}