Completed
Push — master ( 7733a3...6963af )
by Lars
05:10
created
src/voku/helper/UTF8.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1020,16 +1020,16 @@
 block discarded – undo
1020 1020
       $str = self::$CHR[$code_point];
1021 1021
     } elseif ($code_point <= 0x7FF) {
1022 1022
       $str = self::$CHR[($code_point >> 6) + 0xC0] .
1023
-             self::$CHR[($code_point & 0x3F) + 0x80];
1023
+              self::$CHR[($code_point & 0x3F) + 0x80];
1024 1024
     } elseif ($code_point <= 0xFFFF) {
1025 1025
       $str = self::$CHR[($code_point >> 12) + 0xE0] .
1026
-             self::$CHR[(($code_point >> 6) & 0x3F) + 0x80] .
1027
-             self::$CHR[($code_point & 0x3F) + 0x80];
1026
+              self::$CHR[(($code_point >> 6) & 0x3F) + 0x80] .
1027
+              self::$CHR[($code_point & 0x3F) + 0x80];
1028 1028
     } else {
1029 1029
       $str = self::$CHR[($code_point >> 18) + 0xF0] .
1030
-             self::$CHR[(($code_point >> 12) & 0x3F) + 0x80] .
1031
-             self::$CHR[(($code_point >> 6) & 0x3F) + 0x80] .
1032
-             self::$CHR[($code_point & 0x3F) + 0x80];
1030
+              self::$CHR[(($code_point >> 12) & 0x3F) + 0x80] .
1031
+              self::$CHR[(($code_point >> 6) & 0x3F) + 0x80] .
1032
+              self::$CHR[($code_point & 0x3F) + 0x80];
1033 1033
     }
1034 1034
 
1035 1035
     if ($encoding !== 'UTF-8') {
Please login to merge, or discard this patch.