
no_alternative_syntax
¶Replace control structure alternative syntax to use braces.
fix_non_monolithic_code
¶Whether to also fix code with inline HTML.
Allowed types: bool
Default value: true
Default configuration.
--- Original
+++ New
<?php
-if(true):echo 't';else:echo 'f';endif;
+if(true) { echo 't';} else { echo 'f';}
With configuration: ['fix_non_monolithic_code' => true]
.
--- Original
+++ New
-<?php if ($condition): ?>
+<?php if ($condition) { ?>
Lorem ipsum.
-<?php endif; ?>
+<?php } ?>