@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove uncalled DiffusionRequest->getCallsign()

Summary: Ref T4245. This has no callers.

Test Plan:
- Ran `git grep -i 'getCallsign('` and visually verified that no callers could reasonably be `DiffusionRequest` objects (there are only 23 remaining sites, and about half are `$this->...` in `PhabricatorRepository`.
- Browsed around directory/file/branch/content/diff/etc pages in Diffusion.

Reviewers: chad, avivey

Reviewed By: avivey

Maniphest Tasks: T4245

Differential Revision: https://secure.phabricator.com/D15295

-4
-4
src/applications/diffusion/request/DiffusionRequest.php
··· 243 243 return $this->repository; 244 244 } 245 245 246 - public function getCallsign() { 247 - return $this->getRepository()->getCallsign(); 248 - } 249 - 250 246 public function setPath($path) { 251 247 $this->path = $path; 252 248 return $this;