================================= Rule ``switch_continue_to_break`` ================================= Switch case must not be ended with ``continue`` but with ``break``. Examples -------- Example #1 ~~~~~~~~~~ .. code-block:: diff --- Original +++ New 3) { continue; } - continue 2; + break 2; } } Rule sets --------- The rule is part of the following rule sets: - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_ - `@Symfony <./../../ruleSets/Symfony.rst>`_