I'm using PHP CS Fixer for my code. But I am also using PHP as template engine and want one liner PHP code.
When I write this:
<!-- some html code -->
<?php foreach ($modules as $module) { ?>
<!-- some html code ->
...then I get this after the PHP CS Fixer is done:
<!-- some html code -->
<?php foreach ($modules as $module) {
?>
<!-- some html code -->
Which PHP CS rule is affected and can I disable to prevent this code formatting behaviour?