@EclipseGc discovered that DocCommentNode is trimming leading and trailing whitespace from every line in the doc comment, which can sometimes have undesirable results:
/**
* @var string species
* The species to which the animal belongs.
*/
vs
/**
* @var string species
* The species to which the animal belongs.
*/
Can the call to trim() be removed without breaking anything? Or can this be handled by the formatter? I know that doc comments are a bit iffy...
@EclipseGc discovered that DocCommentNode is trimming leading and trailing whitespace from every line in the doc comment, which can sometimes have undesirable results:
Can the call to trim() be removed without breaking anything? Or can this be handled by the formatter? I know that doc comments are a bit iffy...