The manual says "The operator separating the two lines should be placed at the end of the preceding line." That's poor advice (start-of-line operators are much easier to scan), and in my experience gets routinely ignored. Compare
return $a > 0 &&
$a < 100 ||
$a = 0 &&
$b > 0;
with
return $a > 0
&& $a < 100
|| $a = 0
&& $b > 0;
for readability. Or
doStuffWith( $foo, $bar .
$baz, $boom );
We should change the coding style to say start-of-line placement, which is what is used in practice in most of our code anyway.