phpDoc class constants documentation

19,643

Solution 1

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.

Solution 2

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).

Share:
19,643

Related videos on Youtube

mck89
Author by

mck89

Updated on April 15, 2022

Comments

  • mck89
    mck89 about 2 years

    How do I document class constants for phpDoc? I've read the manual but I can't find anything about them.

  • feeela
    feeela about 11 years
    This seems to work for phpDocumentor, but to tell Netbeans which description to show in auto-completing, one must add the @const as described in the other answer.
  • hakre
    hakre over 9 years
    Better review of the @const documentation is here: stackoverflow.com/a/18446766/367456 - it also explains that no such thing exists.
  • Leith
    Leith almost 8 years
    Should use @var as per this answer: stackoverflow.com/a/27772200/2053165
  • Wade
    Wade about 5 years
    Yet another terrible selected answer... Is it possible to change the selected answer? I don't recall, but you should.. --> Guys, do not use @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..
  • Wade
    Wade about 5 years
    It is @var, since @const does not exist: docs.phpdoc.org/references/phpdoc/index.html
  • lonesomeday
    lonesomeday almost 5 years
    @Wade or you can edit, as I have done. That's how StackOverflow works. If you can find some authority for the use of @var or whatever the best solution is, please do add it to the answer.