@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 an unused class

Summary: This class is unused after D6679.

Test Plan: `grep`

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

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

-5
-2
src/__phutil_library_map__.php
··· 887 887 'HeraldEngine' => 'applications/herald/engine/HeraldEngine.php', 888 888 'HeraldInvalidActionException' => 'applications/herald/engine/exception/HeraldInvalidActionException.php', 889 889 'HeraldInvalidConditionException' => 'applications/herald/engine/exception/HeraldInvalidConditionException.php', 890 - 'HeraldInvalidFieldException' => 'applications/herald/engine/exception/HeraldInvalidFieldException.php', 891 890 'HeraldManageGlobalRulesCapability' => 'applications/herald/capability/HeraldManageGlobalRulesCapability.php', 892 891 'HeraldManiphestTaskAdapter' => 'applications/herald/adapter/HeraldManiphestTaskAdapter.php', 893 892 'HeraldNewController' => 'applications/herald/controller/HeraldNewController.php', ··· 3982 3981 'HeraldEditLogQuery' => 'PhabricatorOffsetPagedQuery', 3983 3982 'HeraldInvalidActionException' => 'Exception', 3984 3983 'HeraldInvalidConditionException' => 'Exception', 3985 - 'HeraldInvalidFieldException' => 'Exception', 3986 3984 'HeraldManageGlobalRulesCapability' => 'PhabricatorPolicyCapability', 3987 3985 'HeraldManiphestTaskAdapter' => 'HeraldAdapter', 3988 3986 'HeraldNewController' => 'HeraldController',
-3
src/applications/herald/engine/exception/HeraldInvalidFieldException.php
··· 1 - <?php 2 - 3 - final class HeraldInvalidFieldException extends Exception {}