Fix method visibility for PhabricatorPolicyAwareQuery subclasses

Summary: Ref T6822.

Test Plan:
`grep` for the following:

  - `->willFilterPage(`
  - `->loadPage(`
  - `->didFilterPage(`
  - `->getReversePaging(`
  - `->didFilterPage(`
  - `->willExecute(`
  - `->nextPage(`

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: hach-que, Korvin, epriestley

Maniphest Tasks: T6822

Differential Revision: https://secure.phabricator.com/D11367
This commit is contained in:
Joshua Spence
2015-01-14 06:56:07 +11:00
parent 20e9cfac67
commit 463d094f96
53 changed files with 79 additions and 79 deletions

View File

@@ -49,7 +49,7 @@ final class PhabricatorRepositoryPushEventQuery
return $table->loadAllFromArray($data);
}
public function willFilterPage(array $events) {
protected function willFilterPage(array $events) {
$repository_phids = mpull($events, 'getRepositoryPHID');
$repositories = id(new PhabricatorRepositoryQuery())
->setViewer($this->getViewer())
@@ -69,7 +69,7 @@ final class PhabricatorRepositoryPushEventQuery
return $events;
}
public function didFilterPage(array $events) {
protected function didFilterPage(array $events) {
$phids = mpull($events, 'getPHID');
if ($this->needLogs) {