mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-21 04:50:55 +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();
|
||||
}
|
||||
|
||||
public function buildQueryFromParameters(array $map) {
|
||||
protected function buildQueryFromParameters(array $map) {
|
||||
$query = id(new PhabricatorPasteQuery())
|
||||
->needContent(true);
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ final class PhabricatorSpacesControl extends AphrontFormControl {
|
|||
return $map;
|
||||
}
|
||||
|
||||
public function renderInput() {
|
||||
protected function renderInput() {
|
||||
$viewer = $this->getUser();
|
||||
|
||||
$this->setLabel(pht('Space'));
|
||||
|
|
Loading…
Reference in a new issue