Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git] / src / applications / diffusion / herald / DiffusionPreCommitContentAffectedFilesHeraldField.php
blobf73547ec938141ff392233be2094e31fd99e5228
1 <?php
3 final class DiffusionPreCommitContentAffectedFilesHeraldField
4 extends DiffusionPreCommitContentHeraldField {
6 const FIELDCONST = 'diffusion.pre.commit.affected';
8 public function getHeraldFieldName() {
9 return pht('Affected files');
12 public function getFieldGroupKey() {
13 return DiffusionChangeHeraldFieldGroup::FIELDGROUPKEY;
16 public function getHeraldFieldValue($object) {
17 return $this->getAdapter()->getDiffContent('name');
20 protected function getHeraldFieldStandardType() {
21 return self::STANDARD_TEXT_LIST;