1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-26 16:52:41 +01:00

Fix visibility of DiffusionLowLevelQuery::executeQuery() methods

Summary: Ref T6822.

Test Plan: `grep`

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Maniphest Tasks: T6822

Differential Revision: https://secure.phabricator.com/D11411
This commit is contained in:
Joshua Spence 2015-01-16 06:56:32 +11:00
parent 2f043b2530
commit 6ff5eed206
4 changed files with 4 additions and 4 deletions

View file

@ -26,7 +26,7 @@ final class DiffusionLowLevelCommitFieldsQuery
return $this; return $this;
} }
public function executeQuery() { protected function executeQuery() {
$ref = $this->ref; $ref = $this->ref;
$message = $ref->getMessage(); $message = $ref->getMessage();
$hashes = $ref->getHashes(); $hashes = $ref->getHashes();

View file

@ -15,7 +15,7 @@ final class DiffusionLowLevelCommitQuery
return $this; return $this;
} }
public function executeQuery() { protected function executeQuery() {
if (!strlen($this->identifier)) { if (!strlen($this->identifier)) {
throw new Exception( throw new Exception(
pht('You must provide an identifier with withIdentifier()!')); pht('You must provide an identifier with withIdentifier()!'));

View file

@ -10,7 +10,7 @@ final class DiffusionLowLevelParentsQuery
return $this; return $this;
} }
public function executeQuery() { protected function executeQuery() {
if (!strlen($this->identifier)) { if (!strlen($this->identifier)) {
throw new Exception( throw new Exception(
pht('You must provide an identifier with withIdentifier()!')); pht('You must provide an identifier with withIdentifier()!'));

View file

@ -15,7 +15,7 @@ final class DiffusionLowLevelResolveRefsQuery
return $this; return $this;
} }
public function executeQuery() { protected function executeQuery() {
if (!$this->refs) { if (!$this->refs) {
return array(); return array();
} }