Page MenuHomec4science

PhabricatorHandleObjectSelectorDataView.php
No OneTemporary

File Metadata

Created
Sat, Jan 11, 23:03

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