Note that there are rare cases where formatting can be the cause of your problems. The two cases I can think of would be heredoc and nowdoc syntax.
For example, this code has a parse error:
<?php
if($foo == true) {
echo <<<END_OF_HTML
<p>This isn't going to parse correctly!</p>
END_OF_HTML;
}
?>
whereas this would be the solution:
<?php
if($foo == true) {
echo <<<END_OF_HTML
<p>This isn't going to cause any parse errors.</p>
END_OF_HTML;
}
?>