Use only one default case per switch
A switch statement must not declare more than one default branch.
#Metadata
#Why it matters
Multiple default cases are invalid PHP and indicate a copy-paste or merge mistake.
#Remediation
Keep a single default case and move additional logic into earlier cases or refactor the control flow.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/php/php.correctness.switch-multiple-default.rule.yaml.