@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | { |
| 39 | 39 | $len = strlen($this->text); |
| 40 | 40 | if ($len > $chars) { |
| 41 | - $this->text = substr($this->text, 0, $chars) . $appendWith; |
|
| 41 | + $this->text = substr($this->text, 0, $chars).$appendWith; |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | return $this; |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | */ |
| 87 | 87 | public function append($string, $separator = " ") |
| 88 | 88 | { |
| 89 | - $this->text = $this->text . $separator . $string; |
|
| 89 | + $this->text = $this->text.$separator.$string; |
|
| 90 | 90 | return $this; |
| 91 | 91 | } |
| 92 | 92 | |