Passed
Push — master ( f89e6f...52be4d )
by Tim
02:04
created
lib/File/ReverseRead.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         $this->fileSize = $this->blockStart = $fileInfo['size'];
83 83
         $this->fileMtime = $fileInfo['mtime'];
84 84
 
85
-        if ($this->fileSize > 0){
85
+        if ($this->fileSize > 0) {
86 86
             $this->fileHandle = fopen($fileUrl, 'rb');
87 87
             if (!$this->fileHandle) {
88 88
                 throw new Exception("Cannot open file '$fileUrl'");
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 
160 160
                 if ($eolPos === false) {
161 161
                     // No eol found. Make buffer head of remainder and empty buffer.
162
-                    $this->remainder = $buff . $this->remainder;
162
+                    $this->remainder = $buff.$this->remainder;
163 163
                     $buff = '';
164 164
                 } elseif ($eolPos !== 0) {
165 165
                     // eol found.
Please login to merge, or discard this patch.