Changeset View
Changeset View
Standalone View
Standalone View
src/repository/api/ArcanistRepositoryAPI.php
| Show First 20 Lines • Show All 792 Lines • ▼ Show 20 Lines | /* -( Base Commits )------------------------------------------------------- */ | ||||
| protected function newRemoteRefQueryTemplate() { | protected function newRemoteRefQueryTemplate() { | ||||
| throw new PhutilMethodNotImplementedException(); | throw new PhutilMethodNotImplementedException(); | ||||
| } | } | ||||
| final public function getDisplayHash($hash) { | final public function getDisplayHash($hash) { | ||||
| return substr($hash, 0, 12); | return substr($hash, 0, 12); | ||||
| } | } | ||||
| final public function getNormalizedURI($uri) { | |||||
| $normalized_uri = $this->newNormalizedURI($uri); | |||||
| return $normalized_uri->getNormalizedURI(); | |||||
| } | |||||
| protected function newNormalizedURI($uri) { | |||||
| return $uri; | |||||
| } | |||||
| } | } | ||||