Passed
Push — master ( 24daad...73f9da )
by Zaahid
04:25
created
src/UUStream.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
     {
222 222
         $encoded = preg_replace('/\r\n|\r|\n/', "\r\n", rtrim(convert_uuencode($bytes)));
223 223
         // removes ending '`' line
224
-        $this->stream->write("\r\n" . rtrim(substr($encoded, 0, -1)));
224
+        $this->stream->write("\r\n".rtrim(substr($encoded, 0, -1)));
225 225
     }
226 226
 
227 227
     /**
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
      */
235 235
     private function handleRemainder($string)
236 236
     {
237
-        $write = $this->remainder . $string;
237
+        $write = $this->remainder.$string;
238 238
         $nRem = strlen($write) % 45;
239 239
         $this->remainder = '';
240 240
         if ($nRem !== 0) {
Please login to merge, or discard this patch.