Remove product literal strings in "pht()", part 25
[phabricator.git] / src / applications / releeph / field / specification / ReleephBranchCommitFieldSpecification.php
blob74f747238dbc9db294f09d9e5c01ac058c07774a
1 <?php
3 final class ReleephBranchCommitFieldSpecification
4 extends ReleephFieldSpecification {
6 public function getFieldKey() {
7 return 'commit';
10 public function getName() {
11 return pht('Commit');
14 public function getRequiredHandlePHIDsForPropertyView() {
15 $pull = $this->getReleephRequest();
17 if ($pull->getCommitPHID()) {
18 return array($pull->getCommitPHID());
21 return array();
24 public function renderPropertyViewValue(array $handles) {
25 return $this->renderHandleList($handles);