Passed
Pull Request — master (#80)
by
unknown
06:10
created
src/MySQLReplication/BinaryDataReader/BinaryDataReader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -230,13 +230,13 @@
 block discarded – undo
230 230
     public function readInt8(): int
231 231
     {
232 232
         $re = unpack('c', $this->read(self::UNSIGNED_CHAR_LENGTH))[1];
233
-        return $re>=0x80 ? $re - 0x100 : $re;
233
+        return $re >= 0x80 ? $re - 0x100 : $re;
234 234
     }
235 235
 
236 236
     public function readInt16Be(): int
237 237
     {
238 238
         $re = unpack('n', $this->read(self::UNSIGNED_SHORT_LENGTH))[1];
239
-        return $re>=0x8000 ? $re - 0x10000 : $re;
239
+        return $re >= 0x8000 ? $re - 0x10000 : $re;
240 240
     }
241 241
 
242 242
     public function readInt24Be(): int
Please login to merge, or discard this patch.