Empty loop-body must be in configured style.
Style of empty loop-bodies.
Allowed values: 'braces'
, 'semicolon'
Default value: 'semicolon'
Default configuration.
--- Original
+++ New
-<?php while(foo()){}
+<?php while(foo());
With configuration: ['style' => 'braces']
.
--- Original
+++ New
-<?php while(foo());
+<?php while(foo()){}
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']