phpfmt_stable
phpfmt_stable copied to clipboard
indent after <?php
<?php
for ($i = 0; $i < 10; $i++) {
if ($i%2 == 0) {
echo "Flipflop";
}
}
should be formatted to
<?php
for ($i = 0; $i < 10; $i++) {
if ($i%2 == 0) {
echo "Flipflop";
}
}
Is there any option to keep a single indentation after the php tag?