no_useless_else.rst 856 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. ========================
  2. Rule ``no_useless_else``
  3. ========================
  4. There should not be useless ``else`` cases.
  5. Examples
  6. --------
  7. Example #1
  8. ~~~~~~~~~~
  9. .. code-block:: diff
  10. --- Original
  11. +++ New
  12. <?php
  13. if ($a) {
  14. return 1;
  15. -} else {
  16. +}
  17. return 2;
  18. -}
  19. +
  20. Rule sets
  21. ---------
  22. The rule is part of the following rule set:
  23. - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
  24. References
  25. ----------
  26. - Fixer class: `PhpCsFixer\\Fixer\\ControlStructure\\NoUselessElseFixer <./../../../src/Fixer/ControlStructure/NoUselessElseFixer.php>`_
  27. - Test class: `PhpCsFixer\\Tests\\Fixer\\ControlStructure\\NoUselessElseFixerTest <./../../../tests/Fixer/ControlStructure/NoUselessElseFixerTest.php>`_
  28. The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.