| Dan Scott 2006-06-26, 6:59 pm |
| On 22/06/06, Philip Olson <philip@roshambo.org> wrote:
>
>
> Also, all phpdoc filenames should be lowercase.
>
> Regards,
> Philip
>
Bullet 3 of http://doc.php.net/php/dochowto/chapter-conventions.php states:
"Unlike function reference IDs method reference IDs are
case-sensitive. Special operators ::, -> and underscores are replaced
by the same minus signs (-). For example
function.DOMCharacterData-deleteData is an ID for
DOMCharacterData->deleteData and function.ArrayObject-constructor is
for ArrayObject::__constructor method accordingly. Note an exception
when operators :: and -> followed by two underscores are replaced
with one minus sign (-)."
.... which I interpreted for the PDO docs as meaning that the reference
IDs should be camelCase. And I believe xml_proto.php "interprets" the
coding convention that way as well, to the point of generating
camelCase filenames. Note that the coding conventions don't actually
specify any requirements for file names.
So it's not clear to me that Ben is in the wrong here.
Dan
|