@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | |
276 | 276 | public function append($str) |
277 | 277 | { |
278 | - return new self($this->raw . $str); |
|
278 | + return new self($this->raw.$str); |
|
279 | 279 | } |
280 | 280 | |
281 | 281 | public function asciify($removeUnsupported = true) |
@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | |
335 | 335 | public function prepend($str) |
336 | 336 | { |
337 | - return new self($str . $this->raw); |
|
337 | + return new self($str.$this->raw); |
|
338 | 338 | } |
339 | 339 | |
340 | 340 | public function remove($str, $mode = self::NORMAL) |