We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c76a912 + e18c5c4 commit c6e5e2aCopy full SHA for c6e5e2a
Parser/Tokenizer/TokenizerEscaping.php
@@ -58,6 +58,8 @@ private function replaceUnicodeSequences(string $value): string
58
if (0x10000 > $c) {
59
return \chr(0xE0 | $c >> 12).\chr(0x80 | $c >> 6 & 0x3F).\chr(0x80 | $c & 0x3F);
60
}
61
+
62
+ return '';
63
}, $value);
64
65
0 commit comments