|
From: Reini U. <ru...@x-...> - 2001-06-26 18:59:51
|
Steve Wainstead schrieb: > I've read through the PEAR coding standards and they look good. I'd like > all the project code to use them. You can take a look at > http://www.php.net/manual/en/pear.standards.php. most of it is fine for me, I just don't like the "one true brace" function declaractions follow convention: function fooFunction($arg1, $arg2 = '') { if (condition) { statement; } return $val; } I do: function fooFunction ($arg1, $arg2 = '') { But I don't think that we could agree to any of these :) And it's not that important. -- Reini Urban http://xarch.tu-graz.ac.at/home/rurban/ |