Completed
Push — master ( 132494...891408 )
by Garrett
02:18
created
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.