Back to Php Cs Fixer

Rule ``empty_loop_body``

doc/rules/control_structure/empty_loop_body.rst

3.95.11.4 KB
Original Source

======================== Rule empty_loop_body

Empty loop-body must be in configured style.

Warning

This rule is CONFIGURABLE


You can configure this rule using the following option: ``style``.

Configuration
-------------

``style``
~~~~~~~~~

Style of empty loop-bodies.

Allowed values: ``'braces'`` and ``'semicolon'``

Default value: ``'semicolon'``

Examples
--------

Example #1
~~~~~~~~~~

*Default* configuration.

.. code-block:: diff

   --- Original
   +++ New
   -<?php while(foo()){}
   +<?php while(foo());

Example #2
~~~~~~~~~~

With configuration: ``['style' => 'braces']``.

.. code-block:: diff

   --- Original
   +++ New
   -<?php while(foo());
   +<?php while(foo()){}

Rule sets
---------

The rule is part of the following rule sets:

- `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
- `@Symfony <./../../ruleSets/Symfony.rst>`_ with config:

  ``['style' => 'braces']``

References
----------

- Fixer class: `PhpCsFixer\\Fixer\\ControlStructure\\EmptyLoopBodyFixer <./../../../src/Fixer/ControlStructure/EmptyLoopBodyFixer.php>`_
- Test class: `PhpCsFixer\\Tests\\Fixer\\ControlStructure\\EmptyLoopBodyFixerTest <./../../../tests/Fixer/ControlStructure/EmptyLoopBodyFixerTest.php>`_

The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.