Code checker does not allow tabs after `//`
JanTvrdik opened this issue · 3 comments
JanTvrdik commented
The following code is considered invalid because of tabulators after //
. Feature or bug?
// '5.3 Other illegal code positions' => array(
// '5.3.1 U+FFFE = ef bf be' => array(
// "\xEF\xBF\xBE",
// "",
// ),
// '5.3.2 U+FFFF = ef bf bf' => array(
// "\xEF\xBF\xBF",
// "",
// ),
// ),
dg commented
It can be considered as valid.
JanTvrdik commented
Thank you!