There was an error while loading. Please reload this page.
When running phpcbf with the PSR2 standard against the following code, a closing PHP tag is omitted from output (second line).
<?php foreach($formset['Fieldset'] as $fieldset): ?> <?php foreach($fieldset['Field'] as $field): ?> <?php endforeach; ?> <?php endforeach; ?>
<?php foreach ($formset['Fieldset'] as $fieldset) : ?> <?php foreach ($fieldset['Field'] as $field) : <?php endforeach; ?> <?php endforeach;