Can anyone tell me what the correct way to define php namespaces in phpDoc syntax is? Or, is @package deprecated in phpDoc, since namespaces more or less define a package?

If there is none, is there a common way to document the namespaces a document is in?

link|improve this question
feedback

3 Answers

up vote 3 down vote accepted

phpDoc doesn't have a concept of namespaces but you can (and probably should) use @package for it.

You might take a look at the phplint documentation to see how they're formatting namespaces.

link|improve this answer
Thank you for referencing to an existing library that uses namespace format in their documentation. I couldn't find one, definately useful! – Richard Tuin Jan 13 '11 at 20:39
feedback

@package Should be used in every docblock of every file in your project, you can also use @subpackage. @package is not deprecated, and would be the correct way to define your namespaces.

link|improve this answer
Thank you, @subpackage could be of use, however this doesn't solve my problem. +1 – Richard Tuin Jan 13 '11 at 20:38
feedback

You can take a look at DocBlox; this is a API Documentation Generator that supports namespaces.

And to more clearly answer your question: as far as I have encountered are packages considered Deprecated due to the invention of Namespaces. If you read the PSR-0 specification you will see that it tries to provide the Package as second part of a namespace; first being vendor.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.