Completed
Push — master ( 21916e...0058e7 )
by Matthew
03:17
created
src/Stringy/Stringy.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.