Is there any way with phpdoc to document the different values that a class property can take and what effect this will have. For example:-
class SomeClass {
/**
* Cell text align
*
* null - table default
* l - left align
* r - right align
* c - centre align
* j - justify
*/
public $align;
Some code
}
Is there any way to make the value-description pairs be parsed by phpdoc so that it will turn them into a definition list or such like?