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?