Changeset View
Changeset View
Standalone View
Standalone View
src/unit/engine/phutil/PhutilTestCase.php
| Show First 20 Lines • Show All 645 Lines • ▼ Show 20 Lines | /* -( Internals )---------------------------------------------------------- */ | ||||
| } | } | ||||
| final public function setPaths(array $paths) { | final public function setPaths(array $paths) { | ||||
| $this->paths = $paths; | $this->paths = $paths; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| final protected function getLink($method) { | final protected function getLink($method) { | ||||
| // TOOLSETS: Restore this. | |||||
| return null; | |||||
| $base_uri = $this | $base_uri = $this | ||||
| ->getWorkingCopy() | ->getWorkingCopy() | ||||
| ->getProjectConfig('phabricator.uri'); | ->getProjectConfig('phabricator.uri'); | ||||
| $uri = id(new PhutilURI($base_uri)) | $uri = id(new PhutilURI($base_uri)) | ||||
| ->setPath("/diffusion/symbol/{$method}/") | ->setPath("/diffusion/symbol/{$method}/") | ||||
| ->setQueryParam('context', get_class($this)) | ->setQueryParam('context', get_class($this)) | ||||
| ->setQueryParam('jump', 'true') | ->setQueryParam('jump', 'true') | ||||
| ▲ Show 20 Lines • Show All 90 Lines • Show Last 20 Lines | |||||