Passed
Branch master (307ddc)
by Brian
03:38
created
src/Time.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     {
72 72
         $leaps = Time::getleaps();
73 73
         $lenLeaps = count($leaps);
74
-        $nleaps = 0;  // number of leap seconds prior to gpsTime
74
+        $nleaps = 0; // number of leap seconds prior to gpsTime
75 75
         for ($i = 0; $i < $lenLeaps; $i++) {
76 76
             if (!strcmp('unix2gps', $dirFlag)) {
77 77
                 if ($gpsTime >= $leaps[$i] - $i) {
Please login to merge, or discard this patch.
src/Data.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@
 block discarded – undo
173 173
      */
174 174
     public static function dwordToInt32($dword, $endianness = 1, $signedness = 1)
175 175
     {
176
-        print('endianness: '.$endianness);
176
+        print('endianness: ' . $endianness);
177 177
 
178 178
         # unpack hex str to raw bytes
179 179
         $bin = pack("H*", $dword);
Please login to merge, or discard this patch.