mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 08:42: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:
parent
2f043b2530
commit
6ff5eed206
4 changed files with 4 additions and 4 deletions
|
@ -26,7 +26,7 @@ final class DiffusionLowLevelCommitFieldsQuery
|
|||
return $this;
|
||||
}
|
||||
|
||||
public function executeQuery() {
|
||||
protected function executeQuery() {
|
||||
$ref = $this->ref;
|
||||
$message = $ref->getMessage();
|
||||
$hashes = $ref->getHashes();
|
||||
|
|
|
@ -15,7 +15,7 @@ final class DiffusionLowLevelCommitQuery
|
|||
return $this;
|
||||
}
|
||||
|
||||
public function executeQuery() {
|
||||
protected function executeQuery() {
|
||||
if (!strlen($this->identifier)) {
|
||||
throw new Exception(
|
||||
pht('You must provide an identifier with withIdentifier()!'));
|
||||
|
|
|
@ -10,7 +10,7 @@ final class DiffusionLowLevelParentsQuery
|
|||
return $this;
|
||||
}
|
||||
|
||||
public function executeQuery() {
|
||||
protected function executeQuery() {
|
||||
if (!strlen($this->identifier)) {
|
||||
throw new Exception(
|
||||
pht('You must provide an identifier with withIdentifier()!'));
|
||||
|
|
|
@ -15,7 +15,7 @@ final class DiffusionLowLevelResolveRefsQuery
|
|||
return $this;
|
||||
}
|
||||
|
||||
public function executeQuery() {
|
||||
protected function executeQuery() {
|
||||
if (!$this->refs) {
|
||||
return array();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue