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.
switch ($a) { case 'a': switch ($b) { case 'b': return 'c'; } break; }
The sniff is triggered on the return, but I think it shouldn't be, since a switch without a default: is not guaranteed to return something.
default: