I prefer to keep my code as compact as possible.
One line of code for something as simple as below is preferred:
if($a) return;
instead, all of the formatting styles do the following:
if($a)
return;
same with loops eg:
foreach ($files as $file) test($file);