mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-30 09:20:58 +01:00
Fix some method visibilities
Summary: See D13185, the `testMethodVisibility()` test was not being executed. Test Plan: `arc unit` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D13186
This commit is contained in:
parent
47051643c7
commit
259b40fc28
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ final class PhabricatorPasteSearchEngine
|
||||||
return new PhabricatorPaste();
|
return new PhabricatorPaste();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function buildQueryFromParameters(array $map) {
|
protected function buildQueryFromParameters(array $map) {
|
||||||
$query = id(new PhabricatorPasteQuery())
|
$query = id(new PhabricatorPasteQuery())
|
||||||
->needContent(true);
|
->needContent(true);
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ final class PhabricatorSpacesControl extends AphrontFormControl {
|
||||||
return $map;
|
return $map;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function renderInput() {
|
protected function renderInput() {
|
||||||
$viewer = $this->getUser();
|
$viewer = $this->getUser();
|
||||||
|
|
||||||
$this->setLabel(pht('Space'));
|
$this->setLabel(pht('Space'));
|
||||||
|
|
Loading…
Reference in a new issue