1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 08:52:39 +01:00

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
This commit is contained in:
Joshua Spence 2015-06-09 07:09:58 +10:00
parent 818fcf0035
commit af1b586990
8 changed files with 8 additions and 8 deletions

View file

@ -178,7 +178,7 @@ final class AlmanacServiceQuery
return parent::didFilterPage($services); return parent::didFilterPage($services);
} }
public function getPrimaryTableAlias() { protected function getPrimaryTableAlias() {
return 'service'; return 'service';
} }

View file

@ -45,7 +45,7 @@ final class PhabricatorFileSearchEngine
); );
} }
public function buildQueryFromParameters(array $map) { protected function buildQueryFromParameters(array $map) {
$query = $this->newQuery(); $query = $this->newQuery();
if ($map['authorPHIDs']) { if ($map['authorPHIDs']) {

View file

@ -29,7 +29,7 @@ final class HarbormasterBuildPlanSearchEngine
); );
} }
public function buildQueryFromParameters(array $map) { protected function buildQueryFromParameters(array $map) {
$query = $this->newQuery(); $query = $this->newQuery();
if ($map['status']) { if ($map['status']) {

View file

@ -54,7 +54,7 @@ final class PhabricatorMacroSearchEngine
); );
} }
public function buildQueryFromParameters(array $map) { protected function buildQueryFromParameters(array $map) {
$query = $this->newQuery(); $query = $this->newQuery();
if ($map['authorPHIDs']) { if ($map['authorPHIDs']) {

View file

@ -78,7 +78,7 @@ final class PhabricatorPeopleSearchEngine
); );
} }
public function buildQueryFromParameters(array $map) { protected function buildQueryFromParameters(array $map) {
$query = $this->newQuery(); $query = $this->newQuery();
$viewer = $this->requireViewer(); $viewer = $this->requireViewer();

View file

@ -32,7 +32,7 @@ final class PholioMockSearchEngine extends PhabricatorApplicationSearchEngine {
); );
} }
public function buildQueryFromParameters(array $map) { protected function buildQueryFromParameters(array $map) {
$query = $this->newQuery(); $query = $this->newQuery();
if ($map['authorPHIDs']) { if ($map['authorPHIDs']) {

View file

@ -41,7 +41,7 @@ final class PhabricatorProjectSearchEngine
} }
public function buildQueryFromParameters(array $map) { protected function buildQueryFromParameters(array $map) {
$query = $this->newQuery(); $query = $this->newQuery();
if (strlen($map['name'])) { if (strlen($map['name'])) {

View file

@ -41,7 +41,7 @@ final class PhabricatorRepositorySearchEngine
); );
} }
public function buildQueryFromParameters(array $map) { protected function buildQueryFromParameters(array $map) {
$query = $this->newQuery(); $query = $this->newQuery();
if ($map['callsigns']) { if ($map['callsigns']) {