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

Remove getPHID() from PhabricatorMentionableInterface

Summary: Some versions of PHP aren't very happy about both interfaces and superclasses defining a method. Just remove it from MentionableInterface and leave it as implicit.

Auditors: btrahan

+1 -5
+1 -5
src/applications/transactions/interface/PhabricatorMentionableInterface.php
··· 5 5 * - actually TYPE_EDGE transactions that add "mentioned" edges - to the 6 6 * implementing object. 7 7 */ 8 - interface PhabricatorMentionableInterface { 9 - 10 - public function getPHID(); 11 - 12 - } 8 + interface PhabricatorMentionableInterface {}