Page MenuHomec4science

PhabricatorHandleObjectSelectorDataView.php
No OneTemporary

File Metadata

Created
Mon, Mar 3, 21:42

PhabricatorHandleObjectSelectorDataView.php

<?php
final class PhabricatorHandleObjectSelectorDataView extends Phobject {
private $handle;
public function __construct($handle) {
$this->handle = $handle;
}
public function renderData() {
$handle = $this->handle;
return array(
'phid' => $handle->getPHID(),
'name' => $handle->getFullName(),
'uri' => $handle->getURI(),
);
}
}

Event Timeline