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:
@@ -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']) {
|
||||||
|
|||||||
Reference in New Issue
Block a user