Completed
Push — master ( 72ed98...0b1ebc )
by Daniel S.
09:05
created
src/DBCRecord.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
             }
122 122
         }
123 123
 
124
-        $data = array_filter($data, function ($key) {
124
+        $data = array_filter($data, function($key) {
125 125
             return false === strpos($key, '_checksum') && false === strpos($key, '_unused');
126 126
         }, ARRAY_FILTER_USE_KEY);
127 127
 
Please login to merge, or discard this patch.
src/DBC.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@
 block discarded – undo
199 199
                 $currentByte = fread($this->fileHandle, 1);
200 200
                 ++$bytesRead;
201 201
                 if (chr(0) !== $currentByte) {
202
-                    $currentString = $currentString . $currentByte;
202
+                    $currentString = $currentString.$currentByte;
203 203
                 } else {
204 204
                     if (!empty($currentString)) {
205 205
                         $this->stringBlock[$bytesRead - strlen($currentString)] = $currentString;
Please login to merge, or discard this patch.