remove superfluous ()

This commit is contained in:
Mario
2024-03-10 13:14:10 +01:00
parent d285da09fe
commit 0a730935f5

View File

@@ -18,7 +18,7 @@ class Text {
return EMPTY_STR;
}
return (htmlspecialchars($string, ENT_COMPAT, 'UTF-8', false));
return htmlspecialchars($string, ENT_COMPAT, 'UTF-8', false);
}
}