Fix method visibilities
Summary: This should (hopefully) be the last one of these since D13185 has landed. Test Plan: `arc unit` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13284
This commit is contained in:
@@ -15,7 +15,7 @@ final class PhabricatorSpacesNamespaceSearchEngine
|
||||
return new PhabricatorSpacesNamespaceQuery();
|
||||
}
|
||||
|
||||
public function buildCustomSearchFields() {
|
||||
protected function buildCustomSearchFields() {
|
||||
return array(
|
||||
id(new PhabricatorSearchThreeStateField())
|
||||
->setLabel(pht('Active'))
|
||||
@@ -27,7 +27,7 @@ final class PhabricatorSpacesNamespaceSearchEngine
|
||||
);
|
||||
}
|
||||
|
||||
public function buildQueryFromParameters(array $map) {
|
||||
protected function buildQueryFromParameters(array $map) {
|
||||
$query = $this->newQuery();
|
||||
|
||||
if ($map['active']) {
|
||||
|
||||
Reference in New Issue
Block a user