How do I document class constants for phpDoc? I've read the manual but I can't find anything about them.
3 Answers
Constants only need a docblock that contains the description. No specific tag is necessary. The code parser itself identifies constants and displays them as such in the generated documentation (here's an example).
2 Comments
@const as described in the other answer.I'm fairly sure that you can use @const, though I can't find any English documentation. There's a German example here. It shows define statements rather than class constants, but IIRC the syntax is the same.
Nine years later, an edit...
It is clear now that the above is bad advice as @const has not appeared in the docs and it seems it will not.
Using @var seems to work, though I cannot see it explicitly specified anywhere.
4 Comments
@const documentation is here: stackoverflow.com/a/18446766/367456 - it also explains that no such thing exists.@var as per this answer: stackoverflow.com/a/27772200/2053165@const as it is NOT valid, NOT correct, and NOT in the docs. One day it might not work, kind of like being "deprecated" but still works until they decide to pull the plug..@var or whatever the best solution is, please do add it to the answer.The full list of all PHPDoc 3 tags: Tag reference
The manual says the following:
@var
You may use the @var tag to document the Type of the following Structural Elements:
- Constants, both class and global scope
- Properties
- Variables, both global and local scope
@varis the right way to do it, see github.com/phpDocumentor/fig-standards/blob/master/proposed/…