@@ -121,7 +121,7 @@ |
||
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 |
@@ -199,7 +199,7 @@ |
||
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; |