Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git] / src / applications / phid / handle / view / PhabricatorHandleObjectSelectorDataView.php
blob7723746440bf77c138ec7d782bdef421f8609c01
1 <?php
3 final class PhabricatorHandleObjectSelectorDataView extends Phobject {
5 private $handle;
7 public function __construct($handle) {
8 $this->handle = $handle;
11 public function renderData() {
12 $handle = $this->handle;
13 return array(
14 'phid' => $handle->getPHID(),
15 'name' => $handle->getFullName(),
16 'uri' => $handle->getURI(),