phpDoc class constants documentation(phpDoc 类常量文档)
问题描述
How do I document class constants for phpDoc? I've read the manual but I can't find anything about them.
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.
这篇关于phpDoc 类常量文档的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!