Quote:
Originally Posted by cbkbud
The brackets really need to be on their own line ...
What do you people mean you only give brackets a new line for functions? How are functions any different in that structure than an if () or while (), or w/e?
|
Example:
PHP Code:
function BLAH()
{ // See? NEW LINE!
if (lawl == "xXx") { // See? NO NEW LINE!
}
}