@@ -221,7 +221,7 @@ discard block |
||
| 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 |
||
| 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) { |