
Rule switch_case_semicolon_to_colon
ΒΆ
A case should be followed by a colon and not a semicolon.
ExamplesΒΆ
Example #1ΒΆ
--- Original
+++ New
<?php
switch ($a) {
- case 1;
+ case 1:
break;
- default;
+ default:
break;
}
Rule setsΒΆ
The rule is part of the following rule sets:
Source classΒΆ
PhpCsFixer\Fixer\ControlStructure\SwitchCaseSemicolonToColonFixer