Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 534 Bytes

no_superfluous_elseif.rst

File metadata and controls

32 lines (24 loc) · 534 Bytes

Rule no_superfluous_elseif

Replaces superfluous elseif with if.

Examples

Example #1

--- Original
+++ New
 <?php
 if ($a) {
     return 1;
-} elseif ($b) {
+}
+if ($b) {
     return 2;
 }

Rule sets

The rule is part of the following rule set:

@PhpCsFixer
Using the @PhpCsFixer rule set will enable the no_superfluous_elseif rule.