How must we document (with phpDocumentor) constants defined with define() in PHP?

I found nothing in the docs, but found the following example (which I don't see it's use) in the sample2.php:

/**#@+
 * Constants
 */
/**
 * first constant
 */
define('testing', 6);
/**
 * second constant
 */
define('anotherconstant', strlen('hello'));

Anyone can tell me what's the best way to document constants in PHP with phpDocumentor?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Define statements are in general only commented with a descriptive text, so that's basically how you comment it.

To read more about the DocBlock template tag, /**#@+, check out the manual page.

link|improve this answer
No particular tag is necessary. The "template tag" that appears at the top of your example is only there as a shortcut that adds your "Constants" description piece into each of your individual descriptions ("first constant", "second constant"). The use of that template tag is only needed if you indeed want to put some common text into multiple separate descriptions. – ashnazg Sep 1 '11 at 20:50
feedback

You have at phpDoc.org the elements that can be documented.

You also have an example of documenting a define() (the second piece of code and surrounding paragraphs).

link|improve this answer
That example is actually trying to demonstrate that having the "define" statement incorrectly sandwiched between function foo() and the function's docblock will cause the docblock to be incorrectly associated with the defined constant instead of the function. I don't really see a useful example in the tutorial to show documenting a constant, so I found one in one of phpDocumentor's files itself... look at the bottom of the page here (manual.phpdoc.org/HTMLSmartyConverter/HandS/__filesource/…). – ashnazg Sep 1 '11 at 20:58
feedback

Your Answer

 
or
required, but never shown

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