@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+4 -4
+1 -1
src/applications/diffusion/query/lowlevel/DiffusionLowLevelCommitFieldsQuery.php
··· 26 26 return $this; 27 27 } 28 28 29 - public function executeQuery() { 29 + protected function executeQuery() { 30 30 $ref = $this->ref; 31 31 $message = $ref->getMessage(); 32 32 $hashes = $ref->getHashes();
+1 -1
src/applications/diffusion/query/lowlevel/DiffusionLowLevelCommitQuery.php
··· 15 15 return $this; 16 16 } 17 17 18 - public function executeQuery() { 18 + protected function executeQuery() { 19 19 if (!strlen($this->identifier)) { 20 20 throw new Exception( 21 21 pht('You must provide an identifier with withIdentifier()!'));
+1 -1
src/applications/diffusion/query/lowlevel/DiffusionLowLevelParentsQuery.php
··· 10 10 return $this; 11 11 } 12 12 13 - public function executeQuery() { 13 + protected function executeQuery() { 14 14 if (!strlen($this->identifier)) { 15 15 throw new Exception( 16 16 pht('You must provide an identifier with withIdentifier()!'));
+1 -1
src/applications/diffusion/query/lowlevel/DiffusionLowLevelResolveRefsQuery.php
··· 15 15 return $this; 16 16 } 17 17 18 - public function executeQuery() { 18 + protected function executeQuery() { 19 19 if (!$this->refs) { 20 20 return array(); 21 21 }