Completed
Push — master ( 132494...891408 )
by Garrett
02:18
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.
src/UStrObj.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
                 if ($ordcache === 0xFEFF) { // BOM
155 155
                     if ($originOffset !== 0) {
156 156
                         // if not at beginning, store as word joiner U+2060
157
-                        $this->chars[] = [\chr(0xE2) . \chr(0x81) . \chr(0xA0), 0x2060];
157
+                        $this->chars[] = [\chr(0xE2).\chr(0x81).\chr(0xA0), 0x2060];
158 158
                     }
159 159
                     // otherwise discard
160 160
                     continue;
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,8 @@
 block discarded – undo
151 151
                     continue;
152 152
                 }
153 153
 
154
-                if ($ordcache === 0xFEFF) { // BOM
154
+                if ($ordcache === 0xFEFF) {
155
+// BOM
155 156
                     if ($originOffset !== 0) {
156 157
                         // if not at beginning, store as word joiner U+2060
157 158
                         $this->chars[] = [\chr(0xE2) . \chr(0x81) . \chr(0xA0), 0x2060];
Please login to merge, or discard this patch.