@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.

Fix method visibilities

Summary: See also D13186.

Test Plan: Ran `arc unit --everything`

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

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

+8 -8
+1 -1
src/applications/almanac/query/AlmanacServiceQuery.php
··· 178 178 return parent::didFilterPage($services); 179 179 } 180 180 181 - public function getPrimaryTableAlias() { 181 + protected function getPrimaryTableAlias() { 182 182 return 'service'; 183 183 } 184 184
+1 -1
src/applications/files/query/PhabricatorFileSearchEngine.php
··· 45 45 ); 46 46 } 47 47 48 - public function buildQueryFromParameters(array $map) { 48 + protected function buildQueryFromParameters(array $map) { 49 49 $query = $this->newQuery(); 50 50 51 51 if ($map['authorPHIDs']) {
+1 -1
src/applications/harbormaster/query/HarbormasterBuildPlanSearchEngine.php
··· 29 29 ); 30 30 } 31 31 32 - public function buildQueryFromParameters(array $map) { 32 + protected function buildQueryFromParameters(array $map) { 33 33 $query = $this->newQuery(); 34 34 35 35 if ($map['status']) {
+1 -1
src/applications/macro/query/PhabricatorMacroSearchEngine.php
··· 54 54 ); 55 55 } 56 56 57 - public function buildQueryFromParameters(array $map) { 57 + protected function buildQueryFromParameters(array $map) { 58 58 $query = $this->newQuery(); 59 59 60 60 if ($map['authorPHIDs']) {
+1 -1
src/applications/people/query/PhabricatorPeopleSearchEngine.php
··· 78 78 ); 79 79 } 80 80 81 - public function buildQueryFromParameters(array $map) { 81 + protected function buildQueryFromParameters(array $map) { 82 82 $query = $this->newQuery(); 83 83 84 84 $viewer = $this->requireViewer();
+1 -1
src/applications/pholio/query/PholioMockSearchEngine.php
··· 32 32 ); 33 33 } 34 34 35 - public function buildQueryFromParameters(array $map) { 35 + protected function buildQueryFromParameters(array $map) { 36 36 $query = $this->newQuery(); 37 37 38 38 if ($map['authorPHIDs']) {
+1 -1
src/applications/project/query/PhabricatorProjectSearchEngine.php
··· 41 41 } 42 42 43 43 44 - public function buildQueryFromParameters(array $map) { 44 + protected function buildQueryFromParameters(array $map) { 45 45 $query = $this->newQuery(); 46 46 47 47 if (strlen($map['name'])) {
+1 -1
src/applications/repository/query/PhabricatorRepositorySearchEngine.php
··· 41 41 ); 42 42 } 43 43 44 - public function buildQueryFromParameters(array $map) { 44 + protected function buildQueryFromParameters(array $map) { 45 45 $query = $this->newQuery(); 46 46 47 47 if ($map['callsigns']) {