Changeset View
Changeset View
Standalone View
Standalone View
src/browse/ref/ArcanistBrowseURIRef.php
| <?php | <?php | ||||
| final class ArcanistBrowseURIRef | final class ArcanistBrowseURIRef | ||||
| extends ArcanistRef { | extends ArcanistRef { | ||||
| private $uri; | private $uri; | ||||
| private $type; | private $type; | ||||
| public function getRefIdentifier() { | public function getRefDisplayName() { | ||||
| return pht('Browse URI "%s"', $this->getURI()); | return pht('Browse URI "%s"', $this->getURI()); | ||||
| } | } | ||||
| public function defineHardpoints() { | public function defineHardpoints() { | ||||
| return array(); | return array(); | ||||
| } | } | ||||
| public function setURI($uri) { | public function setURI($uri) { | ||||
| Show All 18 Lines | |||||