Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 999 Bytes

empty_loop_body.rst

File metadata and controls

57 lines (37 loc) · 999 Bytes

Rule empty_loop_body

Empty loop-body must be in configured style.

Configuration

style

Style of empty loop-bodies.

Allowed values: 'braces', 'semicolon'

Default value: 'semicolon'

Examples

Example #1

Default configuration.

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

Example #2

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

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

Rule sets

The rule is part of the following rule sets:

@PhpCsFixer

Using the @PhpCsFixer rule set will enable the empty_loop_body rule with the default config.

@Symfony

Using the @Symfony rule set will enable the empty_loop_body rule with the config below:

['style' => 'braces']