Completed
Push — master ( 307ddc...7e5cba )
by Brian
02:29
created
src/Data.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 
61 61
         # Determine 2's complement
62 62
         if ($signedness && $int8 >= 0x80) {
63
-            if (0x80 & $int8){
63
+            if (0x80 & $int8) {
64 64
                 return -(($int8 ^ 0xFF) + 1);
65 65
             }
66 66
         }
Please login to merge, or discard this patch.