PHP Docs question

PHP Docs builds documentation from comments if you format your comments a certain way. Example:


/**
 * Function description
 *
 * @param type description
 * @return type
 * @throws type
 */

I was wondering if it was possible to add a new attribute - @change. The attribute remarks on what class members the method may change whenever it is invoked.

You can add a new attributes but they won’t be given any special cases in PHP Doc unless you mod the parser/generator.