@@ -531,7 +531,7 @@ discard block |
||
531 | 531 | */ |
532 | 532 | public function append(string $string): self |
533 | 533 | { |
534 | - return new self((string) $this . $string); |
|
534 | + return new self((string) $this.$string); |
|
535 | 535 | } |
536 | 536 | |
537 | 537 | /** |
@@ -543,7 +543,7 @@ discard block |
||
543 | 543 | */ |
544 | 544 | public function prepend(string $string): self |
545 | 545 | { |
546 | - return new self($string . (string) $this); |
|
546 | + return new self($string.(string) $this); |
|
547 | 547 | } |
548 | 548 | |
549 | 549 | /** |