Remove product literal strings in "pht()", part 25
[phabricator.git] / src / applications / releeph / field / specification / ReleephRevisionFieldSpecification.php
blob45f6bdd7e1909c0f8a85be62a41dac30277d1863
1 <?php
3 final class ReleephRevisionFieldSpecification
4 extends ReleephFieldSpecification {
6 public function getFieldKey() {
7 return 'revision';
10 public function getName() {
11 return pht('Revision');
14 public function getRequiredHandlePHIDsForPropertyView() {
15 $requested_object = $this->getObject()->getRequestedObjectPHID();
16 if (!($requested_object instanceof DifferentialRevision)) {
17 return array();
20 return array(
21 $requested_object->getPHID(),
25 public function renderPropertyViewValue(array $handles) {
26 return $this->renderHandleList($handles);