Completed
Push — master ( 1c2400...ca8dd9 )
by Lars
03:53
created
src/voku/helper/UTF8.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -932,20 +932,20 @@
 block discarded – undo
932 932
 
933 933
     if ($code_point <= 0x7ff) {
934 934
       return $cache[$code_point] = chr(0xc0 | ($code_point >> 6)) .
935
-                                   chr(0x80 | ($code_point & 0x3f));
935
+                                    chr(0x80 | ($code_point & 0x3f));
936 936
     }
937 937
 
938 938
     if ($code_point <= 0xffff) {
939 939
       return $cache[$code_point] = chr(0xe0 | ($code_point >> 12)) .
940
-                                   chr(0x80 | (($code_point >> 6) & 0x3f)) .
941
-                                   chr(0x80 | ($code_point & 0x3f));
940
+                                    chr(0x80 | (($code_point >> 6) & 0x3f)) .
941
+                                    chr(0x80 | ($code_point & 0x3f));
942 942
     }
943 943
 
944 944
     if ($code_point <= 0x10ffff) {
945 945
       return $cache[$code_point] = chr(0xf0 | ($code_point >> 18)) .
946
-                                   chr(0x80 | (($code_point >> 12) & 0x3f)) .
947
-                                   chr(0x80 | (($code_point >> 6) & 0x3f)) .
948
-                                   chr(0x80 | ($code_point & 0x3f));
946
+                                    chr(0x80 | (($code_point >> 12) & 0x3f)) .
947
+                                    chr(0x80 | (($code_point >> 6) & 0x3f)) .
948
+                                    chr(0x80 | ($code_point & 0x3f));
949 949
     }
950 950
 
951 951
     # U+FFFD REPLACEMENT CHARACTER
Please login to merge, or discard this patch.