mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
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:
parent
0aab026f7e
commit
69a9b5c3a3
2 changed files with 6 additions and 6 deletions
|
@ -43,7 +43,7 @@ final class ManiphestTaskSearchEngine
|
||||||
->needProjectPHIDs(true);
|
->needProjectPHIDs(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function buildCustomSearchFields() {
|
protected function buildCustomSearchFields() {
|
||||||
return array(
|
return array(
|
||||||
id(new PhabricatorSearchOwnersField())
|
id(new PhabricatorSearchOwnersField())
|
||||||
->setLabel(pht('Assigned To'))
|
->setLabel(pht('Assigned To'))
|
||||||
|
@ -105,7 +105,7 @@ final class ManiphestTaskSearchEngine
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getDefaultFieldOrder() {
|
protected function getDefaultFieldOrder() {
|
||||||
return array(
|
return array(
|
||||||
'assignedPHIDs',
|
'assignedPHIDs',
|
||||||
'projectPHIDs',
|
'projectPHIDs',
|
||||||
|
@ -128,7 +128,7 @@ final class ManiphestTaskSearchEngine
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getHiddenFields() {
|
protected function getHiddenFields() {
|
||||||
$keys = array();
|
$keys = array();
|
||||||
|
|
||||||
if ($this->getIsBoardView()) {
|
if ($this->getIsBoardView()) {
|
||||||
|
@ -140,7 +140,7 @@ final class ManiphestTaskSearchEngine
|
||||||
return $keys;
|
return $keys;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function buildQueryFromParameters(array $map) {
|
protected function buildQueryFromParameters(array $map) {
|
||||||
$query = id(new ManiphestTaskQuery())
|
$query = id(new ManiphestTaskQuery())
|
||||||
->needProjectPHIDs(true);
|
->needProjectPHIDs(true);
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ final class PhabricatorSpacesNamespaceSearchEngine
|
||||||
return new PhabricatorSpacesNamespaceQuery();
|
return new PhabricatorSpacesNamespaceQuery();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function buildCustomSearchFields() {
|
protected function buildCustomSearchFields() {
|
||||||
return array(
|
return array(
|
||||||
id(new PhabricatorSearchThreeStateField())
|
id(new PhabricatorSearchThreeStateField())
|
||||||
->setLabel(pht('Active'))
|
->setLabel(pht('Active'))
|
||||||
|
@ -27,7 +27,7 @@ final class PhabricatorSpacesNamespaceSearchEngine
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function buildQueryFromParameters(array $map) {
|
protected function buildQueryFromParameters(array $map) {
|
||||||
$query = $this->newQuery();
|
$query = $this->newQuery();
|
||||||
|
|
||||||
if ($map['active']) {
|
if ($map['active']) {
|
||||||
|
|
Loading…
Reference in a new issue