Hi, since 2.3.3 (and caused probably by #621) comments are incorrectly reported as an error in following structure: ``` php switch ($foo) { case 'bar': // some comment ... break; case 'baz': // other comment ... break; default: // other comment ... break; } ``` On the lines with the comment following error occurs: `ERROR | [x] The CASE body must start on the line following the statement` ... though the case body actually starts on a proper line.