Completed
Push — master ( 4ec48f...796d2d )
by Lars
04:33
created
src/voku/helper/UTF8.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -963,16 +963,16 @@
 block discarded – undo
963 963
       $str = UTF8NonStrict::chr($code_point);
964 964
     } elseif (0x800 > $code_point) {
965 965
       $str = UTF8NonStrict::chr(0xC0 | $code_point >> 6) .
966
-             UTF8NonStrict::chr(0x80 | $code_point & 0x3F);
966
+              UTF8NonStrict::chr(0x80 | $code_point & 0x3F);
967 967
     } elseif (0x10000 > $code_point) {
968 968
       $str = UTF8NonStrict::chr(0xE0 | $code_point >> 12) .
969
-             UTF8NonStrict::chr(0x80 | $code_point >> 6 & 0x3F) .
970
-             UTF8NonStrict::chr(0x80 | $code_point & 0x3F);
969
+              UTF8NonStrict::chr(0x80 | $code_point >> 6 & 0x3F) .
970
+              UTF8NonStrict::chr(0x80 | $code_point & 0x3F);
971 971
     } else {
972 972
       $str = UTF8NonStrict::chr(0xF0 | $code_point >> 18) .
973
-             UTF8NonStrict::chr(0x80 | $code_point >> 12 & 0x3F) .
974
-             UTF8NonStrict::chr(0x80 | $code_point >> 6 & 0x3F) .
975
-             UTF8NonStrict::chr(0x80 | $code_point & 0x3F);
973
+              UTF8NonStrict::chr(0x80 | $code_point >> 12 & 0x3F) .
974
+              UTF8NonStrict::chr(0x80 | $code_point >> 6 & 0x3F) .
975
+              UTF8NonStrict::chr(0x80 | $code_point & 0x3F);
976 976
     }
977 977
 
978 978
     if ($encoding !== 'UTF-8') {
Please login to merge, or discard this patch.