Fork me on GitHub
a Sensio Labs Product

BoY42 (v3.15.1) edition

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']

The logo is © 2010-2022 Sensio Labs