Created
May 7, 2013 12:31
-
-
Save NumEricR/5532215 to your computer and use it in GitHub Desktop.
Possible constants doc issue with PHPDocumentor 2.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
$ pear upgrade phpdoc/phpDocumentor-alpha | |
Nothing to upgrade | |
*/ | |
/* | |
$ phpdoc --version | |
phpDocumentor version 2.0.0a12 | |
*/ | |
/** | |
* Description 1. | |
*/ | |
define('CONSTANT1', 'constant_1'); | |
/** | |
* @const CONSTANT2 Description 2 | |
*/ | |
define('CONSTANT2', 'constant_2'); | |
/** | |
* @constant CONSTANT3 Description 3 | |
*/ | |
define('CONSTANT3', 'constant_3'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
My related issue: "Constants documentation not used"