Fork me on GitHub
a Sensio Labs Product

I ate three cookies πŸͺ (v3.40.2) edition

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