Passed
Push — master ( 739958...19e804 )
by Pierrick
10:49
created
src/Lexer.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -162,14 +162,14 @@
 block discarded – undo
162 162
         return match (true) {
163 163
             (0x7F & $bytes) == $bytes => chr($bytes),
164 164
             (0x07FF & $bytes) == $bytes => chr(0xc0 | ($bytes >> 6))
165
-                 . chr(0x80 | ($bytes & 0x3F)),
165
+                    . chr(0x80 | ($bytes & 0x3F)),
166 166
             (0xFFFF & $bytes) == $bytes => chr(0xe0 | ($bytes >> 12))
167
-                 . chr(0x80 | (($bytes >> 6) & 0x3F))
168
-                 . chr(0x80 | ($bytes & 0x3F)),
167
+                    . chr(0x80 | (($bytes >> 6) & 0x3F))
168
+                    . chr(0x80 | ($bytes & 0x3F)),
169 169
             default => chr(0xF0 | ($bytes >> 18))
170
-                 . chr(0x80 | (($bytes >> 12) & 0x3F))
171
-                 . chr(0x80 | (($bytes >> 6) & 0x3F))
172
-                 . chr(0x80 | ($bytes & 0x3F)),
170
+                    . chr(0x80 | (($bytes >> 12) & 0x3F))
171
+                    . chr(0x80 | (($bytes >> 6) & 0x3F))
172
+                    . chr(0x80 | ($bytes & 0x3F)),
173 173
         };
174 174
     }
175 175
 }
Please login to merge, or discard this patch.