Replaces superfluous elseif
with if
.
--- Original
+++ New
<?php
if ($a) {
return 1;
-} elseif ($b) {
+}
+if ($b) {
return 2;
}
The rule is part of the following rule set:
- Fixer class: PhpCsFixer\Fixer\ControlStructure\NoSuperfluousElseifFixer
- Test class: PhpCsFixer\Tests\Fixer\ControlStructure\NoSuperfluousElseifFixerTest
The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.