/**
  * Returns a short markdown snippet of the pull request for use in release notes.
  *
  * @return string A short representation of the pull request.
  */
 public function displayShort()
 {
     return parent::displayShort() . "&nbsp;<sup>[PR&nbsp;#{$this->_number}]</sup>";
 }
Exemple #2
0
 /**
  * Returns a short markdown snippet of the merge for use in release notes.
  *
  * @return string A short representation of the merge.
  */
 public function displayShort()
 {
     return parent::displayShort() . "&nbsp;<sup>[{$this->_branch}]</sup>";
 }