Completed
Pull Request — master (#4)
by
unknown
13s
created
src/Reader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -282,9 +282,9 @@
 block discarded – undo
282 282
     protected function readIntegerList($num)
283 283
     {
284 284
         if ($this->littleEndian) {
285
-            return unpack('V' . $num, fread($this->file, 4 * $num));
285
+            return unpack('V'.$num, fread($this->file, 4 * $num));
286 286
         }
287 287
 
288
-        return unpack('N' . $num, fread($this->file, 4 * $num));
288
+        return unpack('N'.$num, fread($this->file, 4 * $num));
289 289
     }
290 290
 }
Please login to merge, or discard this patch.