Remove product literal strings in "pht()", part 6
[phabricator.git] / src / applications / differential / herald / DifferentialDiffAuthorHeraldField.php
bloba6c909dc7c4b0ee2a6ac0bd9a471f600ea7d0946
1 <?php
3 final class DifferentialDiffAuthorHeraldField
4 extends DifferentialDiffHeraldField {
6 const FIELDCONST = 'differential.diff.author';
8 public function getHeraldFieldName() {
9 return pht('Author');
12 public function getHeraldFieldValue($object) {
13 return $object->getAuthorPHID();
16 protected function getHeraldFieldStandardType() {
17 return self::STANDARD_PHID;
20 protected function getDatasource() {
21 return new PhabricatorPeopleDatasource();