Completed
Push — master ( 54dd63...b30cd2 )
by Lars
01:50
created
src/Stringy.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
             $suffix = \implode('', $suffix);
210 210
         }
211 211
 
212
-        return static::create($this->str . $suffix, $this->encoding);
212
+        return static::create($this->str.$suffix, $this->encoding);
213 213
     }
214 214
 
215 215
     /**
@@ -1034,7 +1034,7 @@  discard block
 block discarded – undo
1034 1034
         $quotedPattern = \preg_quote($pattern, '/');
1035 1035
         $replaceWildCards = \str_replace('\*', '.*', $quotedPattern);
1036 1036
 
1037
-        return $this->matchesPattern('^' . $replaceWildCards . '\z');
1037
+        return $this->matchesPattern('^'.$replaceWildCards.'\z');
1038 1038
     }
1039 1039
 
1040 1040
     /**
@@ -1586,7 +1586,7 @@  discard block
 block discarded – undo
1586 1586
             $prefix = \implode('', ...$prefix);
1587 1587
         }
1588 1588
 
1589
-        return static::create($prefix . $this->str, $this->encoding);
1589
+        return static::create($prefix.$this->str, $this->encoding);
1590 1590
     }
1591 1591
 
1592 1592
     /**
@@ -2231,7 +2231,7 @@  discard block
 block discarded – undo
2231 2231
     public function surround(string $substring): self
2232 2232
     {
2233 2233
         return static::create(
2234
-            $substring . $this->str . $substring,
2234
+            $substring.$this->str.$substring,
2235 2235
             $this->encoding
2236 2236
         );
2237 2237
     }
Please login to merge, or discard this patch.