Apply CS fixes.

This commit is contained in:
Daniele Alessandri
2016-06-05 21:09:11 +02:00
parent 5b4e942112
commit 64b3a4805c
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -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)) {
$integer = (int) $payload;
return $integer == $payload ? $integer : $payload;
}
+1
View File
@@ -91,6 +91,7 @@ class ProtocolProcessor implements ProtocolProcessorInterface
case ':':
$integer = (int) $payload;
return $integer == $payload ? $integer : $payload;
case '-':