@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.

Change `LiskDAO::generatePHID` to be `public`

Summary: Ref T6822. There are a bunch of places where we call `$something->generatePHID(...)` externally (outside of the class). Therefore, these methods need to be `public`.

Test Plan: I wouldn't expect //increasing// method visibility to break anything.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6822

Differential Revision: https://secure.phabricator.com/D11363

+1 -1
+1 -1
src/infrastructure/storage/lisk/LiskDAO.php
··· 1291 1291 * 1292 1292 * @task hook 1293 1293 */ 1294 - protected function generatePHID() { 1294 + public function generatePHID() { 1295 1295 throw new Exception( 1296 1296 'To use CONFIG_AUX_PHID, you need to overload '. 1297 1297 'generatePHID() to perform PHID generation.');