Completed
Push — master ( 3daf45...3860d5 )
by Garrett
11:11
created
src/StrObj.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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)
Please login to merge, or discard this patch.