Passed
Branch master (307ddc)
by Brian
03:38
created
src/Data.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,8 +60,9 @@
 block discarded – undo
60 60
 
61 61
         # Determine 2's complement
62 62
         if ($signedness && $int8 >= 0x80) {
63
-            if (0x80 & $int8)
64
-                return -(($int8 ^ 0xFF) + 1);
63
+            if (0x80 & $int8) {
64
+                            return -(($int8 ^ 0xFF) + 1);
65
+            }
65 66
         }
66 67
 
67 68
         return $int8;
Please login to merge, or discard this patch.