POLL: How do you format your php?

I don’t mind the opening brace on the same line as long as the closing brace is indented so you can see what it is closing. The number of bits I code I see with this is a disgrace:


function name(){
   //do something
   function else(){
      //do something
}
}

Imagine having a rather large file to debug and all the closing braces are like that. Nasty stuff that is.

I always use option A. But if it is one line conditional code. I put everything in one line with the braces on.
Ex,

if(userFound($username)){doThis();}

For me option B is out of the question. I don’t like it at all.