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:
parent
818fcf0035
commit
af1b586990
8 changed files with 8 additions and 8 deletions
|
@ -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';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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']) {
|
||||||
|
|
|
@ -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']) {
|
||||||
|
|
|
@ -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']) {
|
||||||
|
|
|
@ -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();
|
||||||
|
|
|
@ -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']) {
|
||||||
|
|
|
@ -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'])) {
|
||||||
|
|
|
@ -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']) {
|
||||||
|
|
Loading…
Reference in a new issue