@@ -361,6 +361,7 @@ class StreamConnection extends AbstractConnection
case ':':
$integer = (int) $payload;
+
return $integer == $payload ? $integer : $payload;
case '-':
@@ -32,6 +32,7 @@ class IntegerResponse implements ResponseHandlerInterface
{
if (is_numeric($payload)) {
}
@@ -91,6 +91,7 @@ class ProtocolProcessor implements ProtocolProcessorInterface