Rule switch_case_space
¶
Removes extra spaces between colon and case value.
Examples¶
Example #1¶
--- Original
+++ New
<?php
switch($a) {
- case 1 :
+ case 1:
break;
- default :
+ default:
return 2;
}
Rule sets¶
The rule is part of the following rule sets:
References¶
Fixer class: PhpCsFixer\Fixer\ControlStructure\SwitchCaseSpaceFixer
Test class: PhpCsFixer\Tests\Fixer\ControlStructure\SwitchCaseSpaceFixerTest
The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.