Passed
Push — master ( d37b16...c7147d )
by Pierrick
06:20
created
src/Lexer.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -177,18 +177,18 @@
 block discarded – undo
177 177
 
178 178
             case (0x07FF & $bytes) == $bytes:
179 179
                 return chr(0xc0 | ($bytes >> 6))
180
-                     . chr(0x80 | ($bytes & 0x3F));
180
+                        . chr(0x80 | ($bytes & 0x3F));
181 181
 
182 182
             case (0xFFFF & $bytes) == $bytes:
183 183
                 return chr(0xe0 | ($bytes >> 12))
184
-                     . chr(0x80 | (($bytes >> 6) & 0x3F))
185
-                     . chr(0x80 | ($bytes & 0x3F));
184
+                        . chr(0x80 | (($bytes >> 6) & 0x3F))
185
+                        . chr(0x80 | ($bytes & 0x3F));
186 186
 
187 187
             default:
188 188
                 return chr(0xF0 | ($bytes >> 18))
189
-                     . chr(0x80 | (($bytes >> 12) & 0x3F))
190
-                     . chr(0x80 | (($bytes >> 6) & 0x3F))
191
-                     . chr(0x80 | ($bytes & 0x3F));
189
+                        . chr(0x80 | (($bytes >> 12) & 0x3F))
190
+                        . chr(0x80 | (($bytes >> 6) & 0x3F))
191
+                        . chr(0x80 | ($bytes & 0x3F));
192 192
         }
193 193
     }
194 194
 }
Please login to merge, or discard this patch.