Skip to content

Latest commit

 

History

History
69 lines (48 loc) · 1.05 KB

empty_loop_condition.rst

File metadata and controls

69 lines (48 loc) · 1.05 KB

Rule empty_loop_condition

Empty loop-condition must be in configured style.

Configuration

style

Style of empty loop-condition.

Allowed values: 'for' and 'while'

Default value: 'while'

Examples

Example #1

Default configuration.

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

-do {
+while (true) {
     foo();
-} while(true); // do while
+}  // do while

Example #2

With configuration: ['style' => 'for'].

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

Rule sets

The rule is part of the following rule sets:

Source class

PhpCsFixer\Fixer\ControlStructure\EmptyLoopConditionFixer