1
0
Fork 0
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:
Joshua Spence 2015-06-08 09:52:14 +10:00
parent 47051643c7
commit 259b40fc28
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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'));