You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Running PSR2.ControlStructures.SwitchDeclaration.BodyOnNextLineCASE can remove comments which are on the same line as the case statement
Code sample
$test = 2;
switch ( $test ) {
case2: // comment followed by empty lineecho"test 2";
}