1234567891011121314151617181920212223242526272829303132 |
- ==============================
- Rule ``no_superfluous_elseif``
- ==============================
- Replaces superfluous ``elseif`` with ``if``.
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- .. code-block:: diff
- --- 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 <./../../ruleSets/PhpCsFixer.rst>`_
|