Page MenuHomec4science

PhabricatorHandleObjectSelectorDataView.php
No OneTemporary

File Metadata

Created
Tue, Dec 24, 01:46

PhabricatorHandleObjectSelectorDataView.php

<?php
final class PhabricatorHandleObjectSelectorDataView {
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