I'm reading through the Zend Framework coding standards, where they state that curly brace after a Class definitions should be on the next line, the "one true brace form".
class MyClass
{
function....
}
I usually have the braces on the same line:
class OtherClass {
function ...
}
What's the reason for putting the brace on the next line? Or using any other style, for that matter?