getReleephRequest()->getRequestUserPHID(); if ($phid) { $phids[] = $phid; } return $phids; } public function renderPropertyViewValue(array $handles) { return $this->renderHandleList($handles); } public function shouldAppearOnCommitMessage() { return true; } public function shouldAppearOnRevertMessage() { return true; } public function renderLabelForCommitMessage() { return 'Requested By'; } public function renderValueForCommitMessage() { $phid = $this->getReleephRequest()->getRequestUserPHID(); $handle = id(new PhabricatorHandleQuery()) ->setViewer($this->getUser()) ->withPHIDs(array($phid)) ->executeOne(); return $handle->getName(); } }