Is it possible to export the description of a Entity Field to the phpdoc block?
For example, lets say I have an entity called "Items" with a field called "UOM" and the description I put for the UOM field is "Unit of measurement". I would like to export as follows:
    class AbstractItem
   {
         /**
        *
        * Unit of measurement
        *
        * @ORM\Column(type="smallint", nullable=false)
        */
        private $uom;
   }
Even if this exect way of doing it can't be done, how would we go about putting the description in some sort of way in the attribute?